.featured-designer-hero{
    color: white;
    padding: 280px 32px 32px;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 620px) {
    padding: 148px 32px 98px;
}

.featured-designer-hero > div{
    max-width: 1020px;
    margin: auto;
}

.featured-designer-hero h1{
    margin-bottom: 50px;
    text-align: center;
}

.featured-designer-hero h2{
    font-size: 40px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.featured-designer-hero p{
    font-size: 16px;
}

@media (min-width: 620px) {
    .featured-designer-hero p{
        font-size: 20px;
    }
}

.featured-designer-hero strong{
    font-weight: 500;
}

.video-section video{
    max-width: 100%;
}

.video-section h2{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 48px;
}

.video-section h4{
    font-weight: 400;
}

.video-section .video-row{
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: center;
    flex-direction: column;
}

.video-section .video-wrapper{
    position: relative;
}

.video-section button{
    position: absolute;
    color: black;
    line-height: 1;
    background: rgba(255, 255, 255, .35);
    padding-left: 15px;
    border-radius: 50%;
    font-size: 47px;
    height: 85px;
    width: 85px;
    text-align: center;
    top: 50%;
    left: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    backdrop-filter: blur(25px);
}

.video-section button.playing{
    display: none;
}

.video-section button:hover,
.video-section video:hover + button{
    opacity: 1;
}

@media (min-width: 620px) {
    .video-section .video-row{
        flex-direction: row;
    }

    .video-section .video-row:nth-child(even){
        flex-direction: row-reverse;
    }
}

.video-section .video-row > *{
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 620px) {
    .video-section .video-row > *{
        flex: 0 0 calc(50% - 32px);
        max-width: 50%;
        max-height: 713px;
        overflow: hidden;
    }
}

.video-section .primary-button{
    border-radius: 0;
}

#primary .appointment-callout-block {
    margin-bottom: 60px;
}

#primary .appointment-callout-block h2{
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
    margin: -7px 0 10px 0;
    line-height: 1.2em;
    width: 100%;
    text-transform: uppercase;
}

#primary .appointment-callout-block h2 + p{
    font-size: 13px;
    font-weight: 300;
    margin: 4px 0;
    width: 100%;
}

#primary .appointment-callout-block h3{
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 4px 0;
    line-height: 1.2em;
    width: 100%;
}

@media (min-width: 465px) {
    #primary .appointment-callout-block .top .image-slider {
        width: auto;
    }
}

.events-section{
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-block: 130px;
}

@media (min-width: 620px) {
    .events-section{
        flex-direction: row;
    }
}

.events-section h2{
    font-size: 48px;
    font-family: "Playfair Display", serif;
}

.events-section p,
.events-section ul{
    font-size: 20px;
}

.events-section li{
    line-height: 2;
}

.events-section > * {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 620px) {
    .events-section > * {
        flex: 0 0 calc(50% - 32px);
        max-width: 50%;
    }
}

.events-section .primary-button{
    border-radius: 0;
}

.blog-section{}

.blog-section h2{
    font-size: 48px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.blog-section h3{
    font-size: 23px;
    font-weight: 300;
    line-height: 2.25;
    font-family: "Playfair Display", serif;
    margin: 0;
}

.blog-section .blog-row{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-section .blog-row > a{
    display: block;
    position: relative;
    color: white;
    text-decoration: none;
    background-position: top center;
    background-size: cover;
    padding: 310px 16px 16px;
    flex: 0 0 100%;
    max-width: 100%;
}

@media(min-width: 700px){
    .blog-section .blog-row > a{
        flex: 0 0 calc(33.333% - 24px);
        max-width: 33.333%;
    }
}

.blog-section .blog-row > a:after{
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(0deg,rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.blog-section .blog-row > a > *{
    position: relative;
    z-index: 1;
}

.blog-section .blog-row .read-more{
    display: flex;
    align-items: flex-end;
    gap: 8px;
}