/* ========================================
   Info page styles — PromBarrier
   ======================================== */

/* --- Info Header --- */

.info-header {
    background-color: var(--lighter-grey);
    padding: 2rem 0 2.5rem;
}

.info-header h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}


.info-header p {
    font-size: 1rem;
    color: var(--dark-grey);

    line-height: 1.6;
}

/* --- Info Content --- */

.info-content {
    padding: 2rem 0;
}

.info-content h2 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-content ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--black);
    line-height: 1.6;
}

.info-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
}

/* --- Info Cards --- */

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    flex: 1;
    min-width: 240px;
    background: var(--lighter-grey);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--light-grey);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--yellow);
    flex-shrink: 0;
}

.info-card__icon i {
    font-size: 1.25rem;
    color: var(--yellow);
}

.info-card__title {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.info-card__text {
    font-size: 0.85rem;
    color: var(--dark-grey);
    line-height: 1.5;
}

/* --- Responsive --- */

@media (max-width: 767.98px) {
    .info-card {
        min-width: 100%;
    }
}
