/* ============================================================
   MAIN STYLES — Inner Pages & Common Components
   ============================================================ */

/* ---- Main Content Wrapper ---- */
.main-content {
    min-height: 60vh;
}

/* ---- Page Content ---- */
.page-content h2 { margin-top: 2rem; }
.page-content p  { margin-bottom: 1.1rem; }

/* ---- Section Intro ---- */
.section-intro {
    font-size: 1.05rem;
    color: var(--color-grey);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    line-height: 1.8;
}

/* ---- Leaders Hub Cards ---- */
.leaders-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.hub-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    border-bottom: 4px solid transparent;
}

.hub-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-bottom-color: var(--color-gold);
}

.hub-card img { width: 100%; height: 200px; object-fit: cover; }

.hub-card-body {
    padding: 1.5rem;
    background: var(--color-white);
}

.hub-card-body h3 { color: var(--color-navy); margin-bottom: .5rem; }
.hub-card-body p  { color: var(--color-grey); font-size: .9rem; margin-bottom: 1rem; }

/* ---- President's Note Archive ---- */
.note-archive-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.note-archive-card {
    display: flex;
    gap: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.note-archive-card:hover { box-shadow: var(--shadow-md); }

.note-archive-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 1.5rem;
    flex-shrink: 0;
    border: 3px solid var(--color-gold);
}

.note-archive-body { padding: 1.5rem 1.5rem 1.5rem 0; flex: 1; }
.note-archive-body .note-meta { font-size: .8rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem; }
.note-archive-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.note-archive-body p  { font-size: .9rem; margin-bottom: 1rem; }

/* ---- Recognition Filter Tabs ---- */
.recog-tabs {
    display: flex;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.recog-tab {
    padding: .55rem 1.25rem;
    border-radius: 25px;
    border: 2px solid var(--color-border);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    color: var(--color-grey);
}

.recog-tab.active,
.recog-tab:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

/* ---- Recognition List ---- */
.recognition-list { display: flex; flex-direction: column; gap: 1.25rem; }

/* ---- Meetings Grid ---- */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.meeting-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.meeting-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.meeting-card img { width: 100%; height: 180px; object-fit: cover; }
.meeting-card-body { padding: 1.25rem; }
.meeting-card .m-date { font-size: .78rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; margin-bottom: .4rem; }
.meeting-card h4 { font-size: 1rem; color: var(--color-navy); margin-bottom: .5rem; }
.meeting-card p  { font-size: .875rem; margin-bottom: 1rem; }

/* ---- Contact Page ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-block {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--color-white);
}

.contact-info-block h3 { color: var(--color-white); margin-bottom: 1.5rem; }

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,.8);
    font-size: .925rem;
}

.contact-info-item svg { color: var(--color-gold); flex-shrink: 0; margin-top: .15rem; }
.contact-info-item a { color: rgba(255,255,255,.8); }
.contact-info-item a:hover { color: var(--color-gold); }

.contact-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    transition: var(--transition);
}
.contact-social a:hover { background: var(--color-gold); color: var(--color-navy); }

/* ---- Pagination ---- */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
    color: var(--color-navy);
    border: 1px solid var(--color-border);
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

/* ---- About Page Mission/Vision ---- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.mv-card {
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 5px solid var(--color-gold);
    background: var(--color-light);
}

.mv-card h3 { color: var(--color-navy); margin-bottom: .75rem; font-size: 1.15rem; }
.mv-card p  { margin-bottom: 0; font-size: .95rem; }

/* ---- About Intro Section ---- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-intro-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
