.honour-roll-frame {
    min-height: 100vh;
    background-image: url('https://your-site.com/images/honour-roll-frame.jpg'); /* swap your frame image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    box-sizing: border-box;
}

.honour-roll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.honour-roll-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    overflow: hidden;
}

.honour-roll-card .certificate-thumb {
    width: 100%;
    height: 180px; /* adjust here – trial 150–200px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.honour-roll-card h3 {
    margin: 0 0 8px;
    font-size: 1.6em;
}

.honour-roll-card .locality {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 12px;
}

.honour-roll-card .role {
    font-weight: bold;
    margin-bottom: 12px;
}

.honour-roll-card .excerpt {
    color: #666;
    font-style: italic;
    margin-bottom: 16px;
}

.empty-state {
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
}

.empty-state h3 {
    font-size: 2em;
    margin-bottom: 16px;
}

.empty-state .role {
    font-size: 1.3em;
    margin: 20px 0;
}