* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #fff;
            color: #333;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 13px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            text-decoration: none;
            color: inherit;
        }

        .site-wrap {
            max-width: 1160px;
            margin: 0 auto;
            background: #fff;
        }

        /* Header */
        .top-social {
            height: 39px;
            display: flex;
            align-items: center;
            gap: 22px;
            color: #111;
            font-family: Arial, sans-serif;
            font-size: 20px;
            padding: 0 6px;
        }

        .top-social a {
            display: inline-flex;
            width: 12px;
            height: 12px;
            align-items: center;
            justify-content: center;
        }

        .brand-row {
            height: 64px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand {
            font-size: 43px;
            line-height: 1;
            color: #111;
            letter-spacing: -2px;
            font-weight: 600;
        }

        .search-icon {
            position: absolute;
            right: 10px;
            top: 28px;
            font-family: Arial, sans-serif;
            font-size: 20px;
        }

        /* Navigation */
        .main-nav {
            background: #050505;
            border-bottom: 1px solid #ddd;
        }

        .main-nav .nav {
            justify-content: center;
            flex-wrap: nowrap;
        }

        .main-nav .nav-link {
            color: #fff;
            text-transform: uppercase;
            font-size: 15px;
            padding: 8px 15px;
            white-space: nowrap;
            font-family: Arial, sans-serif;
        }

        .main-nav .nav-link:hover {
            background: #1d1d1d;
        }

        .main-nav .dropdown-arrow {
            font-size: 7px;
            margin-left: 3px;
        }

        /* Top stories */
        .top-stories {
            padding: 10px 8px 40px;
        }

        .top-story {
            text-align: center;
            min-height: 350px;
            overflow: hidden;
        }

        .top-story img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .top-story-main img {
            height: 330px;
        }

        .top-story-title {
            font-size: 30px;
            line-height: 1.18;
            margin: 8px 2px 0;
        }

        .top-story-small .top-story-title {
            font-size: 22px;
            line-height: 1.32;
            margin-top: 7px;
        }

        .top-story-small .top-story-desc {
            margin: 8px 15px 0;
            font-size: 16px;
            line-height: 1.35;
        }

        /* Section */
        .news-section {
            margin: 0 5px 18px;
        }

        .section-title {
            font-size: 25px;
            text-transform: uppercase;
            margin: 0 0 12px;
            padding-bottom: 2px;
            border-bottom: 3px solid #555;
            color: #555;
        }

        .section-title span {
            border-bottom: 2px solid #222;
            padding-bottom: 3px;
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 13px;
        }

        .story-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .story-card h4 {
            font-size: 20px;
            line-height: 1.2;
            font-weight: normal;
            margin: 7px 0 0;
        }

        /* Three column lower sections */
        .lower-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 15px;
        }

        .featured-card {
            position: relative;
        }

        .featured-card img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            display: block;
        }

        .featured-card .overlay-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 26px 9px 7px;
            color: #fff;
            font-size: 35px;
            line-height: 1.15;
            background: linear-gradient(transparent, rgba(0,0,0,.72));
        }

        .mini-list {
            margin-top: 8px;
        }

        .mini-item {
            display: flex;
            gap: 8px;
            padding: 5px 0;
            border-bottom: 0;
        }

        .mini-item img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            flex: 0 0 65px;
        }

        .mini-item h5 {
            font-size: 18px;
            line-height: 1.18;
            font-weight: normal;
            margin: 2px 0 0;
        }

        /* Asia wide feature */
        .asia-feature {
            max-width: 780px;
            margin-bottom: 18px;
        }

        .asia-feature .featured-card img {
            height: 500px;
        }

        .asia-small-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 13px;
            margin-top: 13px;
        }

        .asia-small-grid .story-card img {
            height: 150px;
        }

        /* Three bottom lists */
        .bottom-lists {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 0;
        }

        .bottom-list .mini-item img {
            width: 100px;
            height: 70px;
            flex-basis: 56px;
        }

        /* Footer */
        .site-footer {
            background: #202c67;
            color: #fff;
            margin-top: 16px;
            padding: 17px 10px 12px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 18px;
            min-height: 165px;
        }

        .footer-contact {
            line-height: 1.55;
        }

        .footer-line {
            border-top: 1px solid #b51d34;
            margin: 25px 0 12px;
        }

        .copyright {
            color: #fff;
        }

        .copyright span {
            color: #e83d55;
        }

        /* Mobile */
        @media (max-width: 767px) {
            .site-wrap {
                width: 100%;
            }

            .brand {
                font-size: 33px;
            }

            .brand-row {
                height: 55px;
            }

            .main-nav {
                overflow-x: auto;
            }

            .main-nav .nav {
                justify-content: flex-start;
                min-width: max-content;
            }

            .main-nav .nav-link {
                padding: 8px 9px;
                font-size: 9px;
            }

            .top-stories {
                padding-top: 8px;
            }

            .top-story {
                height: auto;
                margin-bottom: 14px;
            }

            .top-story img,
            .top-story-main img {
                height: 180px;
            }

            .story-grid,
            .lower-grid,
            .bottom-lists {
                grid-template-columns: 1fr 1fr;
            }

            .asia-feature {
                max-width: none;
            }

            .asia-feature .featured-card img {
                height: 230px;
            }
        }

        @media (max-width: 480px) {
            .top-story img,
            .top-story-main img {
                height: 180px;
            }

            .story-grid,
            .lower-grid,
            .bottom-lists,
            .asia-small-grid {
                grid-template-columns: 1fr;
            }

            .story-card img {
                height: 150px;
            }

            .brand {
                font-size: 29px;
            }
        }
