/* ===========================================================
   AFFILIATION PAGE — OFFICIAL ACADEMIC STYLE
=========================================================== */

.aff-section {
    background: white;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

/* -------------------------------------
   RIBBON HEADER WITH LEFT ACCENT STRIP
-------------------------------------- */
.aff-header {
    position: relative;
    padding-left: 22px;
    margin-bottom: 24px;
}

.aff-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 6px;
    border-radius: 6px;
    background: linear-gradient(#2dd4bf, #00cfe8);
    box-shadow: 0 0 12px rgba(0,207,232,0.35);
}

/* -------------------------------------
   SPLIT GRID LAYOUT
-------------------------------------- */
.aff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 12px;
}
@media(min-width: 768px){
    .aff-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* -------------------------------------
   PILL TAG PROGRAM LIST
-------------------------------------- */
.aff-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.aff-tag {
    background: rgba(0,207,232,0.08);
    border: 1px solid rgba(0,207,232,0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a8a78;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: all .25s ease;
}

.aff-tag:hover {
    background: linear-gradient(135deg, #00cfe8, #2dd4bf);
    color: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* -------------------------------------
   COMPLIANCE BLOCK (Highlight Box)
-------------------------------------- */
.aff-compliance {
    background: rgba(255,255,255,0.65);
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all .35s ease;
}

.aff-compliance:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.aff-compliance-icon {
    font-size: 1.8rem;
    color: #0a8a78;
    margin-bottom: 8px;
}

/* -------------------------------------
   IMAGE STYLING
-------------------------------------- */
.aff-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
