/** Blog Styles **/

.blog-section .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #2E647F;
    border-bottom: 2px solid #2E647F;
    padding-bottom: 3px;
    margin-bottom: 16px;
}

.blog-section .eyebrow  p:not(.has-background):last-of-type {
    padding-bottom: 0 !important;
}

.blog-section img {
    border-radius: 5px !important;
}

.blog-section h2 {
    font-family: Intra, serif;
    font-size: 30px;
    font-weight: 700;
    color: #2D3A4B;
    line-height: 1.28;
    margin-bottom: 16px;
}

.blog-section h2::after {
    content: '';
    border: none;
    position: absolute;
    bottom: -24px;
    left: 0;
    height: 3px;
    width: 52px;
    background: #FFB819;
    margin-bottom: 16px;
}

.blog-section.grey {
    background: #F5F7F9;
    padding: 64px 0;
}

.blog-section.blog-dark {
    background: #2D3A4B;
    padding: 72px 0;
    text-align: center;
}

.blog-section.blog-dark p {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.blog-section.blog-dark h2 {
    color: #ffffff;
    font-size: clamp(26px, 3.4vw, 38px);
}

.blog-section.blog-dark h2:after {
    left: 46%;
}

.blog-section .btn {
    display: inline-flex;
    align-items: center;
    background: #FFB819;
    color: #2D3A4B;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px !important;
    border-radius: 5px;
    border: 2px solid #FFB819 !important;
    text-decoration: none;
}

.blog-section .btn:hover {
    background: transparent !important;
    padding: 13px 26px !important;
    border: 2px solid #FFB819 !important;
}

.blog-section .btn-out {
    background: transparent;
    border: 2px solid #FFB819 !important;
    color: #fff;
    margin-left: 10px;
}

.blog-section .btn-out:hover {
    background: #FFB819 !important;
    color: #2D3A4B !important;
    padding: 13px 26px !important;
    border: 2px solid #FFB819 !important;
}

.blog-section ul {
    list-style: none;
    margin: 14px 0 20px;
    padding: 0;
}

.blog-section ul li {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #D4D8DC;
    font-size: 16px;
    line-height: 1.7;
    align-items: flex-start;
    color: #424A52;
}

.blog-section ul li::before {
    content: '';
    min-width: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFB819;
    margin-top: 8px;
    flex-shrink: 0;
    display: block;
}

.blog-section .quote-dark {
    background: #2D3A4B;
    border-radius: 5px;
    padding: 40px 48px;
    margin: 32px 0;
}

.blog-section .quote-blue {
    background: #2E647F;
    border-radius: 5px;
    padding: 40px 48px;
    margin: 32px 0;
}

.blog-section .quote-blue p,
.blog-section .quote-dark p  {
    font-family: Intra, serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.blog-section .callout {
    background: #F5F7F9;
    border-left: 4px solid #2E647F;
    border-radius: 0 5px 5px 0;
    padding: 28px 32px;
    margin: 24px 0;
}

.blog-section .callout p {
    font-style: italic;
    font-size: 16px;
    color: #424A52;
    margin-bottom: 0;
    line-height: 1.75;
}