   .search-content {
            width: min(1200px, calc(100% - 30px));
            margin: 40px auto 70px;
            font-family: "Inter", Arial, sans-serif;
        }

        .search-intro,
        .result-box {
            margin-bottom: 28px;
            padding: 28px;
            background: #ddd;
            border: 1px solid #e4e7ec;
            border-radius: 16px;
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);
        }

        .result-box h2,
        .search-intro h2 {
            margin: 5px 0 8px;
            color: #172033;
        }

        .small-label {
            margin: 0;
            color: #0759c9;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .search-info {
            margin: 0;
            color: #657084;
            line-height: 1.6;
        }

        .result-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding-bottom: 16px;
            margin-bottom: 8px;
            border-bottom: 1px solid #e7eaf0;
        }

        .result-total {
            padding: 7px 12px;
            color: #0759c9;
            background: #eaf2ff;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        .web-result {
            padding: 18px 0;
            border-bottom: 1px solid #e7eaf0;
        }

        .web-result:last-child {
            border-bottom: 0;
        }

        .web-result-title {
            color: #0759c9;
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
        }

        .web-result-title:hover {
            text-decoration: underline;
        }

        .web-url {
            margin: 7px 0 5px;
            color: #16833e;
            font-size: 13px;
            overflow-wrap: anywhere;
        }

        .web-description,
        .media-text p {
            margin: 0;
            color: #626d7f;
            line-height: 1.6;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 22px;
        }

        .image-card,
        .video-card {
            overflow: hidden;
            border: 1px solid #e4e7ec;
            border-radius: 13px;
            background: #fff;
        }

        .image-card img,
        .video-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.25s ease;
        }

        .image-link {
            display: block;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: #edf0f4;
        }

        .image-link:hover img,
        .video-thumb:hover img {
            transform: scale(1.05);
        }

        .media-text {
            padding: 14px;
        }

        .media-text h3 {
            margin: 0 0 7px;
            color: #1b2639;
            font-size: 16px;
            line-height: 1.35;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin-top: 22px;
        }

        .video-card {
            display: grid;
            grid-template-columns: 42% 1fr;
        }

        .video-thumb {
            position: relative;
            display: block;
            min-height: 190px;
            overflow: hidden;
            background: #edf0f4;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            display: grid;
            width: 54px;
            height: 54px;
            place-items: center;
            padding-left: 3px;
            color: #fff;
            background: rgba(7, 89, 201, 0.92);
            border: 3px solid #fff;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .watch-video {
            display: inline-block;
            margin-top: 13px;
            color: #0759c9;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
        }

        .watch-video:hover {
            text-decoration: underline;
        }

        .pagination {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
        }

        .pagination a,
        .pagination .current-page {
            display: inline-flex;
            min-width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
            color: #253248;
            background: #ddd;
            border: 1px solid #dce1e8;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

        .pagination a:hover,
        .pagination .current-page {
            color: #fff;
            background: #0759c9;
            border-color: #0759c9;
        }

        .pagination .page-prev,
        .pagination .page-next {
            padding: 0 14px;
        }

        .page-dots {
            display: inline-flex;
            align-items: center;
            color: #657084;
        }

        .no-results {
            margin: 18px 0 0;
            padding: 16px;
            color: #657084;
            background: #f4f6f9;
            border-radius: 9px;
        }

        @media (max-width: 900px) {
            .image-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .search-content {
                width: min(100% - 20px, 1200px);
                margin-top: 25px;
            }

            .search-intro,
            .result-box {
                padding: 20px;
            }

            .result-header {
                align-items: flex-start;
                flex-direction: column;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .video-card {
                grid-template-columns: 1fr;
            }

            .video-thumb {
                min-height: auto;
                aspect-ratio: 16 / 9;
            }

            .pagination .page-prev,
            .pagination .page-next {
                width: 100%;
            }
        }