/* ────────────────────────────────────────────────
   ACCREDITATIONS BLOCK  –  prefix: ac-
   ──────────────────────────────────────────────── */

/* ── SECTION ── */
.ac-section {
    padding: 100px 0;
}

/* ── HEADER ── */
.ac-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-bottom: 53px;
}

/* ── HEADING (H2) ── */
.ac-heading {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

/* ── GRID ── */
.ac-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 70px;
}

/* ── ITEM ── */
.ac-item {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* ── LOGO BOX ── */
.ac-logo-wrap {
    width: 200px;
    height: 119px;
    background: #ffffff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    flex-shrink: 0;
}

.ac-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── CONTENT ── */
.ac-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* ── META (title + subtitle) ── */
.ac-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* ── TITLE (H3) ── */
.ac-title {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0;
    color: #03cfff;
    margin-bottom: 0;
}

/* ── SUBTITLE ── */
.ac-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 0;
}

/* ── DESCRIPTION ── */
.ac-description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
}

.ac-description p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

/* ── BULLET LIST ── */
.ac-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── BULLET ROW ── */
.ac-bullet {
    display: flex;
    align-items: flex-start;
    gap: 21px;
}

/* ── CYAN GLOW DOT ── */
.ac-dot {
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #03cfff;
    border-radius: 4px;
    box-shadow: 0 0 8px 0 #00d4ff;
    margin-top: 7px; /* aligns dot to first line of text */
}

/* ── BULLET TEXT ── */
.ac-bullet-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #ffffff;
}

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .ac-section  { padding: 72px 0; }
    .ac-heading  { font-size: 38px; line-height: 1.1; letter-spacing: -1px; }
    .ac-item     { width: calc(50% - 16px); }
    .ac-title    { font-size: 24px; line-height: 30px; }
}

@media (max-width: 767.98px) {
    .ac-section  { padding: 56px 0; }
    .ac-heading  { font-size: 30px; letter-spacing: -0.5px; }
    .ac-grid     { row-gap: 48px; }

    /* Stack to single column on tablet-portrait */
    .ac-item     { width: 100%; }
}

@media (max-width: 575.98px) {
    .ac-section     { padding: 40px 0; }
    .ac-heading     { font-size: 26px; }
    .ac-logo-wrap   { width: 160px; height: 96px; }
    .ac-title       { font-size: 22px; line-height: 28px; }
    .ac-description,
    .ac-description p,
    .ac-subtitle,
    .ac-bullet-text { font-size: 17px; line-height: 26px; }
}
