/* =========================
   GLOBAL PAGE STYLE
========================= */

body {
    background: #f5f7fb;
    font-family: Arial, sans-serif;
}

/* =========================
   PAGE TITLE
========================= */

.page-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0;
    color: #0d6efd;
}

/* =========================
   GRID / POINTS CONTAINER
========================= */

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
}

/* =========================
   INTERNSHIP CARD / POINTS
========================= */

.internship-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #eee;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.internship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.internship-icon {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.internship-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.internship-desc {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

/* =========================
   REGISTER BUTTON
========================= */

.btn-register-internship {
    margin-top: 15px;
    width: 100%;
    border-radius: 8px;
    font-weight: 500;
    background: #0d6efd;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-register-internship:hover {
    background: #084298;
}

/* =========================
   EMPTY STATE
========================= */

.empty-box {
    text-align: center;
    padding: 60px;
    font-size: 18px;
    color: #777;
}

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }
}