/* =========================================
   ESTATE EXPERIENCE
   ========================================= */

.estate-experience {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    background: #050505;
    color: #fff;
}

.estate-experience__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 75px 0;
}


/* =========================================
   EYEBROW
   ========================================= */

.estate-experience__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.estate-experience__eyebrow span {
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}


/* =========================================
   GRID
   ========================================= */

.estate-experience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 43px;
}


/* =========================================
   ITEM
   ========================================= */

.estate-experience__item {
    min-width: 0;
    padding: 0 50px;
    border-right: 1px solid #202020;
}

.estate-experience__item:last-child {
    padding-right: 0;
    border-right: 0;
}


/* =========================================
   GOLD LINE
   ========================================= */

.estate-experience__line {
    width: 24px;
    height: 1px;

    margin-bottom: 40px;

    background: #9a8c61;
}


/* =========================================
   TITLE
   ========================================= */

.estate-experience__item h3 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.estate-experience__item p {
    max-width: 360px;
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .estate-experience__item {
        padding-left: 25px;
        padding-right: 25px;
    }

    .estate-experience__item:first-child {
        padding-left: 0;
    }

    .estate-experience__item:last-child {
        padding-right: 0;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {


    .estate-experience__grid {
        display: block;
        margin-top: 45px;
    }


    .estate-experience__item,
    .estate-experience__item:first-child,
    .estate-experience__item:last-child {
        padding: 0 0 40px;
        margin-bottom: 40px;
        border-right: 0;
        border-bottom: 1px solid #202020;
    }

    .estate-experience__item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;

        border-bottom: 0;
    }


    .estate-experience__line {
        margin-bottom: 30px;
    }


    .estate-experience__item h3 {
        margin-bottom: 16px;

        font-size: 27px;
    }


    .estate-experience__item p {
        max-width: 450px;

        font-size: 13px;
        line-height: 1.75;
    }

}