    .internship-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .internship-card {
        display: block;
        text-decoration: none;
        color: inherit;
        background: white;
        border: 1px solid #eee;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 22px rgba(0,0,0,0.06);
        transition: all 0.25s ease;
    }

    .internship-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 34px rgba(0,0,0,0.12);
        color: inherit;
    }

    .internship-thumb {
        width: 100%;
        height: 230px;
        object-fit: cover;
        background: #f1f1f1;
    }

    .internship-body {
        padding: 22px;
    }

    .internship-date {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .internship-title {
        font-size: 1.25rem;
        font-weight: 800;
        line-height: 1.4;
        color: #222;
        margin-bottom: 12px;
    }

    .internship-summary {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    @media (max-width: 992px) {
        .internship-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .internship-grid {
            grid-template-columns: 1fr;
        }
    }