/* =========================================
   DESTAQUE DA HISTÓRIA
   ARTHUR ESSÊNCIA
   ========================================= */

.story-highlight {
    width: 100%;

    background-color: #F8F5EF;

    color: #3E3325;
}

/* =========================================
   CONTAINER
   ========================================= */

.story-highlight-container {
    max-width: 900px;

    margin: 0 auto;

    padding: 100px 30px;

    text-align: center;
}

/* =========================================
   SUBTÍTULO
   ========================================= */

.story-highlight-subtitle {
    margin: 0 0 20px;

    color: #D6B36A;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* =========================================
   TÍTULO
   ========================================= */

.story-highlight h2 {
    max-width: 750px;

    margin: 0 auto 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;
    font-weight: 500;

    line-height: 1.2;
}

/* =========================================
   DESCRIÇÃO
   ========================================= */

.story-highlight-description {
    max-width: 650px;

    margin: 0 auto 35px;

    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;
}

/* =========================================
   BOTÃO
   ========================================= */

.story-highlight-button {
    display: inline-block;

    padding: 14px 30px;

    background-color: #D6B36A;

    color: #3E3325;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.story-highlight-button:hover {
    background-color: #B88A3B;

    color: #FFFFFF;

    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */

@media (max-width: 768px) {

    .story-highlight-container {
        padding: 70px 20px;
    }


    .story-highlight-subtitle {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .story-highlight h2 {
        font-size: 34px;
    }


    .story-highlight-description {
        font-size: 16px;
    }


    .story-highlight-button {
        padding: 13px 24px;
    }

}

