body {
    background: #f5f7fa;
    font-family: 'Inter', sans-serif;
}

.filter-box {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            position: sticky;
            top: 80px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        }

        .intern-card {
            background: #fff;
            border-radius: 10px;
            padding: 18px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
            transition: .2s;
        }

        .intern-card:hover {
            transform: translateY(-4px);
        }

        .company-logo {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .meta {
            font-size: 13px;
            color: #555;
            display: flex;
            gap: 15px;
            margin-top: 6px;
        }

        .meta i {
            color: #0866ff;
        }

        .view-btn {
            color: #0866ff;
            font-weight: 600;
            text-decoration: none;
        }

        .view-btn:hover {
            text-decoration: underline;
        }

        /* ── Stipend Range Slider Styles ── */
        .stipend-range-wrapper {
            margin-top: 4px;
        }

        .stipend-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #555;
            margin-bottom: 4px;
        }

        .stipend-value-display {
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: #0866ff;
            margin-bottom: 6px;
        }

        /* Dual range slider track */
        .slider-track {
            position: relative;
            height: 5px;
            border-radius: 5px;
            background: #dde3ed;
            margin: 10px 0 20px;
        }

        .slider-track .range-fill {
            position: absolute;
            height: 100%;
            background: #0866ff;
            border-radius: 5px;
        }

        .range-input {
            position: relative;
            margin-top: -22px;
        }

        .range-input input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            position: absolute;
            width: 100%;
            height: 5px;
            background: none;
            pointer-events: none;
            outline: none;
            top: 0;
        }

        .range-input input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #0866ff;
            box-shadow: 0 1px 4px rgba(8,102,255,.3);
            cursor: pointer;
            pointer-events: all;
            transition: transform .15s;
        }

        .range-input input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            background: #0866ff;
        }

        .range-input input[type="range"]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #0866ff;
            box-shadow: 0 1px 4px rgba(8,102,255,.3);
            cursor: pointer;
            pointer-events: all;
        }

        .stipend-tick-labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #888;
            margin-top: 2px;
        }