.ph-container{
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 100%;
}
.ph-content-text{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ph-content-text h4{
    font-weight: 200;
    font-size: clamp(18px, 6vw, 24px);
    line-height: clamp(24px, 9vw, 30px);
    max-width: 320px;
}
.ph-content-text a{
    background-color: var(--blue);
    color: var(--white);
    width: 150px;
    text-align: center;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 22px;
}
@media (min-width:768px){
    .ph-container{
        grid-template-columns: 30% 70%;
        align-items: center;
    }
    .ph-content-text h2{
        font-size: clamp(20px, 7vw, 24px);
        line-height: clamp(26px, 10vw, 30px);
    }
}