.vgn-deals-heading {
    color: #004545;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.1em;
}

.vgn-deals-intro {
    padding-bottom: 10px;
}

.vgn-deals-intro-text {
    margin: 0;
    color: #4e4e4e;
    font-size: 15px;
    line-height: 1.8;
}

.deal-tombstones-section {
    padding: 20px 0 70px 0;
    background: #ffffff;
}

.deal-tombstones-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.deal-tombstone-card {
    background: #fff;
    border: 1px solid #e7e2d9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.deal-tombstone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    border-color: #d8c9ae;
}

.deal-tombstone-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.deal-tombstone-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    min-height: 110px;
    padding: 20px;
    background: linear-gradient(180deg, #fcfbf8 0%, #f4efe7 100%);
    border-bottom: 1px solid #ece5d8;
}

.deal-logo-box {
    width: 110px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #e8e2d8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.deal-logo-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.deal-tombstone-content {
    padding: 22px 22px 20px 22px;
}

.deal-tombstone-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.deal-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #004545;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.deal-year {
    font-size: 13px;
    font-weight: 600;
    color: #7b7b7b;
}

.deal-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.35;
    color: #1d1d1d;
    font-weight: 600;
}

.deal-description {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.75;
    color: #4e4e4e;
}

.deal-role {
    margin: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.65;
    color: #8a6b3d;
    font-weight: 600;
}

.deal-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #efefef;
    font-size: 13px;
    color: #666666;
}

.deal-more {
    font-weight: 700;
    color: #004545;
}

@media (max-width: 991px) {
    .deal-tombstones-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .deal-tombstones-grid {
        grid-template-columns: 1fr;
    }

    .deal-tombstone-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
.deal-pagination {
    margin-top: 40px;
    text-align: center;
}

.deal-pagination a {
    display: inline-block;
    padding: 8px 13px;
    margin: 4px;
    border: 1px solid #d8c9ae;
    color: #004545;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.deal-pagination a.active {
    background: #004545;
    color: #ffffff;
}