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

.eb-proj-header {
    margin-bottom: 48px;
}

.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-proj-sec-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-proj-sec-title em {
    font-style: normal;
    color: var(--eb-blue);
}

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

.eb-proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.eb-proj-card {
    background: var(--eb-white);
    border: 1px solid var(--eb-bdr);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .25s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.eb-proj-card:hover {
    box-shadow: 0 8px 40px rgba(104, 125, 156, .14);
}

.eb-proj-img {
    background: var(--eb-blue-pale);
    overflow: hidden;
}

.eb-proj-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.eb-proj-card:hover .eb-proj-img img {
    transform: scale(1.05);
}

.eb-proj-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-proj-img-inner {
    text-align: center;
    color: var(--eb-blue-lt);
}

.eb-proj-img-icon {
    font-size: 32px;
    margin-bottom: 6px;
}

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

.eb-proj-info {
    padding: 20px 18px;
}

.eb-proj-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--eb-gold-dk);
    margin-bottom: 6px;
}

.eb-proj-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--eb-txt);
    margin-bottom: 6px;
    line-height: 1.3;
}

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

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

    .eb-proj-grid {
        grid-template-columns: 1fr;
    }
}