.gh2-resource-centre {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, system-ui, sans-serif
}

.gh2-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4ca962, #05888d);
    color: white;
    border-radius: 16px;
    margin-bottom: 40px
}

.gh2-hero h1 {
    font-size: 2.8rem;
    margin: 0 0 10px;
    color: #fff;
}

.gh2-hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9
}

#gh2-search {
    width: 100%;
    max-width: 600px;
    padding: 16px 20px;
    font-size: 0.8rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.gh2-quick-filters {
    margin: 25px 0
}

.gh2-quick-filters button {
    margin: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: 0.3s
}

.gh2-quick-filters button.active,
.gh2-quick-filters button:hover {
    background: white;
    color: #006666;
    font-weight: bold
}

.gh2-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 20px
}

.gh2-resource-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s
}

.gh2-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15)
}

.gh2-badge {
    padding: 8px 14px;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.type-policy-strategy {
    background: #006666
}

.type-guidelines-standards {
    background: #6b48ff
}

.type-reports {
    background: #1e88e5
}

.type-studies-research {
    background: #fb8c00
}

.type-publications {
    background: #43a047
}

.card-cover {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.card-content {
    padding: 24px
}

.card-content h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.3
}

.meta {
    color: #666;
    font-size: 0.95rem;
    margin: 12px 0
}

.actions {
    margin-top: 20px
}

.btn-primary {
    background: #006666;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold
}

.btn-secondary {
    margin-left: 12px;
    background: transparent;
    color: #006666;
    border: 2px solid #006666;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none
}

@media(max-width:768px) {
    .gh2-hero h1 {
        font-size: 2.2rem
    }

    .gh2-results {
        grid-template-columns: 1fr
    }
}