.eb-disc-section {
    background-color: var(--eb-blue);
    /* padding: 88px 52px; */
    position: relative;
    overflow: hidden;
}

/* .eb-disc-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 170, 87, .1) 0%, transparent 65%);
    pointer-events: none;
} */

.eb-disc-header {
    /* max-width: 600px; */
}

.eb-disc-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--eb-gold-lt);
    margin-bottom: 14px;
    justify-content: center;
}

.eb-disc-section .section-tag::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eb-gold);
    border-radius: 2px;
}

.eb-disc-heading {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    color: var(--eb-white);
}

.eb-disc-heading em {
    font-style: normal;
    color: var(--eb-gold-lt);
}

.eb-disc-desc p{
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin-top: 8px;
}

.eb-disc-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 44px;
}

.eb-disc-col {
    background: rgba(255, 255, 255, .05);
    padding: 32px 26px;
    transition: background .25s;
}

.eb-disc-col:hover {
    background: rgba(255, 255, 255, .1);
}

.eb-disc-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--eb-gold);
    margin-bottom: 10px;
}

.eb-disc-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--eb-white);
    margin-bottom: 14px;
}

.eb-disc-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    margin: 0;
}

.eb-disc-col-list li {
    font-size: 16px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.eb-disc-col-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--eb-gold);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .eb-disc-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eb-disc-section {
        /* padding: 64px 20px; */
    }
}
