.eb-deliverables-widget {
    background: var(--eb-cream);
    /* padding: 96px 52px; */
    /* font-family: 'DM Sans', sans-serif; */
}

.eb-del-header {
    /* max-width: 560px; */
    margin-bottom: 56px;
}

.eb-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-dk);
    margin-bottom: 14px;
}

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

.eb-del-section-title {
    /* 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-txt);
}

.eb-del-section-title em {
    font-style: normal;
    color: var(--eb-blue);
}

.eb-del-section-desc {
    color: var(--eb-txt-mid);
    font-size: 16px;
    line-height: 1.78;
    /* max-width: 560px; */
    font-weight: 400;
}

.eb-del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--eb-bdr);
    border: 1px solid var(--eb-bdr);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
}

.eb-del-item {
    background: var(--eb-white);
    padding: 32px 28px;
    transition: border-color .25s;
}

.eb-del-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--eb-txt);
    margin-bottom: 10px;
}

.eb-del-desc {
    font-size: 16px;
    color: var(--eb-txt-muted);
    line-height: 1.75;
    font-weight: 400;
}

.eb-del-formats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.eb-formats-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--eb-txt-muted);
}

.eb-formats-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.eb-del-fmt-chip {
    padding: 7px 14px;
    border: 1.5px solid var(--eb-bdr-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--eb-gold-dk);
    background: var(--eb-gold-pale);
    border-radius: 3px;
}

.eb-del-footer {
    font-size: 14px;
    color: var(--eb-txt-muted);
    font-style: italic;
    margin-left: auto;
    max-width: 400px;
    text-align: right;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .eb-del-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eb-deliverables-widget {
        /* padding: 64px 20px; */
    }
    .eb-del-grid {
        grid-template-columns: 1fr;
    }
    .eb-del-footer {
        text-align: left;
        margin-left: 0;
    }
}
