﻿/* ==========================================
   PUBLIC PAGES
========================================== */

.public-card {
    border: 1px solid #e7edf3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
}

    .public-card:hover {
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    }

.public-card-body {
    padding: 24px;
}

.public-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #172b4d;
    margin-bottom: 10px;
}

.public-page-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.public-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #172b4d;
    margin-bottom: 18px;
}

.public-info-box {
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    background: #fff;
    transition: all 0.25s ease;
}

    .public-info-box:hover {
        border-color: #d6e4ff;
        box-shadow: 0 3px 12px rgba(13, 110, 253, 0.08);
    }

.public-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

    .public-info-icon i {
        font-size: 22px;
        color: #0d6efd;
    }

.public-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #172b4d;
    margin-bottom: 6px;
}

.public-info-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.7;
}

.public-list {
    padding-left: 18px;
    margin-bottom: 0;
}

    .public-list li {
        font-size: 14px;
        color: #4b5563;
        margin-bottom: 10px;
        line-height: 1.7;
    }

.public-alert {
    background: #f8fbff;
    border: 1px solid #d6e4ff;
    border-radius: 12px;
    padding: 22px;
}

.public-alert-title {
    font-size: 17px;
    font-weight: 700;
    color: #172b4d;
    margin-bottom: 12px;
}

.public-alert p,
.public-alert li {
    font-size: 14px;
    color: #5b6472;
    line-height: 1.8;
}

.public-divider {
    border-top: 1px solid #edf2f7;
    margin: 24px 0;
}

.public-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
}

.public-contact-link {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

    .public-contact-link:hover {
        text-decoration: underline;
    }

@media (max-width: 767px) {

    .public-page-title {
        font-size: 24px;
    }

    .public-card-body {
        padding: 18px;
    }

    .public-section-title {
        font-size: 18px;
    }
}
