:root {

    --primary: #006b2d;
    --primary-light: #2f9f52;

    --accent: #8bc34a;

    --bg: #f5f8ef;

    --card-bg: #ffffff;

    --text: #22411d;
    --muted: #6e8068;

    --border: #dce6d5;
}

.gslide-inline-content {
    background: transparent !important;
}

.sponsor-directory {

    background:
        linear-gradient(135deg,
            #f6f9f0,
            #edf6e6);

    border-radius: 32px;

    padding: 40px;

    min-height: 700px;
}

.directory-header {
    text-align: center;
    margin-bottom: 30px;
}

.directory-subtitle {

    color: #7da440;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.directory-header h2 {

    color: var(--primary);

    font-size: 42px;

    font-weight: 800;

    margin: 10px 0;
}

.directory-header p {

    color: var(--muted);

    font-size: 16px;
}

.search-wrapper {

    position: relative;

    margin-bottom: 25px;
}

.search-icon {

    width: 22px;

    height: 22px;

    position: absolute;

    top: 50%;

    left: 22px;

    transform: translateY(-50%);

    color: #7ea53f;
}

#sponsorSearch {

    width: 100%;

    height: 68px;

    border-radius: 20px;

    border: 2px solid var(--border);

    padding: 0 25px 0 60px;

    font-size: 17px;

    background: white;

    transition: .3s;
}

#sponsorSearch:focus {

    outline: none;

    border-color: var(--primary-light);

    box-shadow:
        0 0 0 8px rgba(47, 159, 82, .10);
}

.sponsor-count {

    color: var(--muted);

    margin-bottom: 25px;

    font-weight: 600;
}

.sponsor-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(320px, 1fr));

    gap: 24px;

    max-height: 65vh;

    overflow-y: auto;

    padding-right: 10px;
}

.sponsor-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 24px;

    padding: 22px;

    display: flex;

    gap: 18px;

    align-items: center;

    transition: .35s;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .04);
}

.sponsor-card:hover {

    transform: translateY(-5px);

    border-color: #8bc34a;

    box-shadow:
        0 20px 40px rgba(0, 107, 45, .12);
}

.sponsor-logo {

    width: 90px;

    height: 90px;

    background: #fff;

    border-radius: 18px;

    border: 1px solid #edf1e8;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    flex-shrink: 0;
}

.sponsor-logo img {

    width: 80%;

    height: 80%;

    object-fit: contain;
}

.sponsor-content {
    flex: 1;
}

.sponsor-name {

    color: var(--text);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 12px;
}

.sponsor-booth {

    display: inline-block;

    background: linear-gradient(135deg,
            #0f8c41,
            #46b05e);

    color: white;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;
}

.no-results {

    text-align: center;

    padding: 60px;

    color: #78906f;
}

@media(max-width:768px) {

    .sponsor-directory {
        padding: 25px;
    }

    .directory-header h2 {
        font-size: 32px;
    }

    .sponsor-grid {
        grid-template-columns: 1fr;
    }
}


.sponsor-filters {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;
}

.filter-chip {

    border: none;

    cursor: pointer;

    padding: 12px 18px;

    border-radius: 999px;

    background: #edf5e7;

    color: #2d5b23;

    font-weight: 700;

    font-size: 14px;

    transition: .25s;
}

.filter-chip:hover {

    background: #dceccf;

    transform: translateY(-2px);
}

.filter-chip.active {

    background:
        linear-gradient(135deg,
            #0f8c41,
            #46b05e);

    color: white;

    box-shadow:
        0 10px 20px rgba(15, 140, 65, .18);
}

.sponsor-category {

    display: inline-flex;

    align-items: center;

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 10px;

    text-transform: uppercase;
}

.sponsor-category.barako {

    background: #e5f6ea;

    color: #0f8c41;
}

.sponsor-category.balisong {

    background: #fff4d8;

    color: #c18400;
}

.sponsor-category.lomi {

    background: #ffe9db;

    color: #d86f18;
}