* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}
/* Container (center content) */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.top-bar {
    background: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #ddd;
}
/* Social icons */
.top-left a img {
    width: 16px;
    height: 16px;
    margin-left: 12px;
    vertical-align: middle;
    cursor: pointer;
    transition: 0.3s;
}

.top-left a img:hover {
    transform: scale(1.1);
}

.top-right button {
    margin-left: 10px;
    padding: 6px 14px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.top-right button:hover {
    opacity: 0.85;
}

.btn-subscribe {
    background: #fff;
    border: 1px solid #ccc;
}

.btn-buy {
    background: #ff2b7a;
    color: #fff;
}

.logo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 120px;
}
/* ===== Menu Box (SECTION) ===== */
.mobile-menu {
    border: 1px solid #ddd;
    padding: 8px 14px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

.mobile-menu:hover {
    border-color: #ff2b7a;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.mobile-menu img {
    width: 18px;
    height: 18px;
}
/* =======================
   Section Dropdown Menu
======================= */
.mobile-menu {
    position: relative;
}
/* Hidden by default */
.menu-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 8px 0;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}
/* Vertical items */
.menu-dropdown li {
    padding: 8px 16px;
}

.menu-dropdown li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: block;
}

.menu-dropdown li:hover {
    background: #f5f5f5;
}

.menu-dropdown.show {
    display: block;
}

.logo {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    color: #555;
}

.search-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
}

.search-link img {
    width: 16px;
    height: 16px;
}

.theme-link img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
/* =======================
   Navigation
======================= */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.nav-box {
    border: 1px solid #ddd;
    max-width: 1200px;
    margin: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 12px 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.nav-menu li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff2b7a;
    bottom: -6px;
    left: 0;
    transition: 0.3s; 
}

.nav-menu li:hover::after {
    width: 100%;
}

.nav-menu li.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ff2b7a;
}
/* =======================
   Mobile Layout (≤768px)
======================= */
@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .logo-bar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 12px 20px;
        border-bottom: 1px solid #ddd;
    }

    .logo {
        order: 1;
        width: 100%;
        text-align: center;
        font-size: 28px;
        margin-bottom: 12px;
    }
 
    .mobile-menu {
        order: 2;
        border: none;
        padding: 0;
    }

    .mobile-menu a {
        font-size: 0; /* hide SECTION text */
    }

    .mobile-menu img {
        width: 22px;
        height: 22px;
    }

    .search-area {
        order: 3;
        margin-left: auto;   /* pushes it to right */
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .search-link span {
        display: none;
    }

    .nav-wrapper {
        display: none;
    }

    .menu-dropdown {
        top: 35px;
        left: 0;
        width: 180px;
    }
}


/* footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 40px 20px;
}
/* Layout */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
/* Left */
.footer-logo {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 380px;
}

.footer-center {
    text-align: center;
}
/* =======================
   Quick Links Title - Exact Style
======================= */
.quick-title {
    position: relative;
    width: 100%;
    height: 8px;
    background: #e5e5e5;   /* long light line */
    margin-bottom: 40px;
}
/* Grey label box */
.quick-box {
    position: absolute;
    top: -0px;
    left: 0;
    background: #f2f2f2;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 18px;
    display: inline-block;
}
/* Vertical divider line */
.quick-box::before {
    content: "";
    position: absolute;
    right: -1px;
    top: 6px;
    width: 1px;
    height: 22px;
    background: #ccc;
}
/* Pink slanted shape */
.quick-box::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 8px;
    width: 29px;
    height: 78%;
    background: #ff2b7a;
    transform: skewX(-30deg);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-links li::after {
    content: "•";
    margin-left: 10px;
    color: #ff2b7a;
}

.footer-links li:last-child::after {
    content: "";
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social img {
    width: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-right {
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.copyright-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 6px;
}
/* =======================
   Footer Responsive (≤768px)
======================= */
@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-left p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-center {
        width: 100%;
    }

    .quick-title {
        width: 100%;
        margin-bottom: 25px;
    }

    .quick-box {
        font-size: 16px;
        padding: 4px 14px;
    }

    .quick-box::after {
        right: -20px;
        width: 22px;
        height: 75%;
        top: 6px;
    }

    .footer-links {
        justify-content: center;
        gap: 10px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-right {
        margin-top: 10px;
    }

    .copyright-icon {
        font-size: 32px;
    }
}


/* 1st section */
.feature-area {
    background: white;
    padding: 40px 0;
}

.feature-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 4px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}
/* LEFT COLUMN */
.fa-left img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 10px;
}

.fa-tag {
    font-size: 11px;
    font-weight: bold;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 6px;
}

.fa-card h4 {
    font-size: 20px;
    line-height: 1.4;
}
.fa-card h4 a{
    text-decoration: none;
    color: inherit;
}

.fa-date {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}

.fa-divider {
    border-bottom: 3px solid black;
    margin: 16px 0;
}

.fa-list h5 {
    font-size: 20px;
    line-height: 1.4;
}
.fa-list h5 a{
    text-decoration: none;
    color: inherit;
}
/* CENTER COLUMN */
.fa-main {
    background: #fff;
    border: 2px solid #000;
}

.fa-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.fa-main-text {
    text-align: center;
    padding: 30px;
}

.fa-main-text h2 {
    font-size: 34px;
    line-height: 1.3;
    margin: 12px 0;
}
.fa-main-text h2 a{
    text-decoration: none;
    color: inherit;
}

.fa-main-text p {
    font-size: 15px;
    color: #555;
}
/* RIGHT COLUMN */
.fa-ad {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.fa-ad-title {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.fa-ad img {
    width: 100%;
    height: 350px;
}

.fa-follow h4 {
    font-size: 20px;
    margin-bottom: 18px;
}

.fa-icons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.fa-icons img {
    width: 22px;
    cursor: pointer;
}
/* =========================
   Feature Section Responsive
   ========================= */
@media (max-width: 768px) {

    .feature-area {
        padding: 25px 0;
    }

    .feature-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .fa-left img {
        height: 200px;
    }

    .fa-card h4,
    .fa-list h5 {
        font-size: 18px;
    }

    .fa-divider {
        margin: 14px 0;
        border-bottom: 2px solid #000;
    }

    /* ----- CENTER COLUMN ----- */
    .fa-main {
        border-width: 1px;
    }

    .fa-main img {
        height: 220px;
    }

    .fa-main-text {
        padding: 18px;
    }

    .fa-main-text h2 {
        font-size: 24px;
        line-height: 1.35;
    }

    .fa-main-text p {
        font-size: 14px;
    }

    /* ----- RIGHT COLUMN ----- */
    .fa-ad img {
        height: 250px;
        object-fit: cover;
    }

    .fa-follow h4 {
        font-size: 18px;
        text-align: center;
    }

    .fa-icons {
        justify-content: center;
        gap: 16px;
    }

    .fa-icons img {
        width: 20px;
    }
}


/* 3rd section */
.lf-section {
    background: #fff;
    padding: 40px 0;
}

.lf-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.lf-sidebar {
    background: #000;
    color: #fff;
    padding: 30px 20px;
}

.lf-side-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 35px;
}
/* Sidebar item vertical layout */
.lf-side-item {
    text-align: left;
    margin-bottom: 35px;
}

.lf-side-item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 10px;
}

.lf-side-item span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.lf-side-item p {
    font-size: 12px;
    color: #ccc;
}
.lf-side-item p a{
    text-decoration: none;
    color: inherit;
}
/* ===== Header ===== */
.lf-head {
    border-top: 5px solid #000;
    margin-bottom: 25px;
}

.lf-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 18px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.lf-title::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 26px;
    height: 100%;
    background: #ff2b7a;
    transform: skewX(-30deg);
}

.lf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.lf-card {
    border: 1px solid #ddd;
    background: #fff;
    transition: 0.3s;
}

.lf-card:hover {
    transform: translateY(-4px);
}

.lf-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.lf-body {
    padding: 15px;
}

.lf-cat {
    font-size: 10px;
    font-weight: bold;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 8px;
}

.lf-body h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
}
.lf-body h3 a{
    text-decoration: none;
    color: inherit;
}

.lf-date {
    font-size: 12px;
    color: #777;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .lf-section {
        padding: 25px 0;
    }

    .lf-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .lf-sidebar {
        padding: 25px 20px;
        text-align: center;
    }

    .lf-side-title {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .lf-side-item {
        margin-bottom: 25px;
        text-align: center;
    }

    .lf-side-item img {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }

    .lf-side-item span {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .lf-side-item p {
        font-size: 11px;
    }
    /* ===== Header ===== */
    .lf-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .lf-title::after {
        right: -14px;
        width: 20px;
    }

    .lf-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lf-card img {
        height: 220px;
    }

    .lf-body {
        padding: 14px;
    }

    .lf-body h3 {
        font-size: 16px;
    }

    .lf-date {
        font-size: 11px;
    }
}


/* 4th section */
.ad-banner-section {
    padding: 10px 0px;
}

.ad-banner-wrap {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.ad-banner-wrap img {
    width: 100%;
    height: 90px;          /* similar to your image height */
    object-fit: cover;      /* keeps image proportional */
    display: block;
}
/* ===============================
   Ad Banner Responsive - 768px
================================ */
@media (max-width: 768px) {

    .ad-banner-section {
        padding: 10px 15px;   /* reduce side space */
    }

    .ad-banner-wrap {
        max-width: 100%;
    }

    .ad-banner-wrap img {
        height: 37px;         /* smaller height for mobile */
    }
}


/* 5th section */
.pd-section {
    background: white;
    padding: 40px 0;
}

.pd-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

.pd-header {
    border-top: 4px solid #000;
    margin-bottom: 25px;
}

.pd-header h2 {
    display: inline-block;
    padding: 6px 14px;
    font-size: 20px;
    font-weight: bold;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 25px;
}

.pd-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pd-col img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.pd-img-tall-full {
    height: 600px;
}

.pd-img-large {
    height: 320px;
}

.pd-img-medium {
    height: 240px;
}

.pd-img-small {
    height: 180px;
}

.pd-img-tall {
    height: 380px;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .pd-section {
        padding: 25px 0;
    }

    .pd-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pd-img-tall-full,
    .pd-img-tall {
        height: 260px;
    }

    .pd-img-large,
    .pd-img-medium,
    .pd-img-small {
        height: 200px;
    }
}


/* 6th section */
.history-block {
    background: #fff;
    padding: 40px 0;
}

.history-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 8px;
}
/* Header */
.history-head {
    border-top: 5px solid #000;
    margin-bottom: 25px;
}

.history-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 18px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.history-title::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 26px;
    height: 100%;
    background: #f4a300;
    transform: skewX(-30deg);
}
/* Top Layout */
.history-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}

.hs-large {
    position: relative;
}

.hs-large img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.hs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hs-overlay h3 {
    font-size: 35px;
    line-height: 1.3;
    margin: 10px 0;
}
.hs-overlay h3 a{
    text-decoration: none;
    color: inherit;
}
/* Right Post */
.hs-right img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    margin-bottom: 20px;
}

.hs-right h4 {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.hs-right h4 a{
    text-decoration: none;
    color: inherit;
}
/* Bottom Layout */
.history-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hs-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.hs-small h5 {
    font-size: 20px;
    line-height: 1.4;
}
.hs-small h5 a{
    text-decoration: none;
    color: inherit;
}

.hs-tag {
    font-size: 10px;
    font-weight: bold;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 8px;
}

.hs-date {
    font-size: 12px;
    color: #ccc;
}

.hs-ad {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.hs-ad-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.hs-ad img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .history-block {
        padding: 25px 0;
    }

    .history-wrap {
        padding: 0 20px;
    }
    
    .history-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .history-title::after {
        right: -14px;
        width: 20px;
    }
    
    .history-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .hs-large img {
        height: 260px;
    }

    .hs-overlay {
        padding: 16px;
    }

    .hs-overlay h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .hs-right img {
        height: 220px;
        margin-bottom: 12px;
    }

    .hs-right h4 {
        font-size: 22px;
        line-height: 1.35;
    }
  
    .history-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hs-small img {
        height: 180px;
    }

    .hs-small h5 {
        font-size: 18px;
    }
  
    .hs-ad img {
        height: 220px;
    }

    .hs-tag {
        font-size: 9px;
    }

    .hs-date {
        font-size: 11px;
    }
}


/* 7th section */
.ac-section {
    background: white;
    padding: 40px 0;
}

.ac-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

.ac-header {
    border-top: 4px solid #000;
    margin-bottom: 25px;
}

.ac-header h2 {
    display: inline-block;
    padding: 6px 14px;
    font-size: 20px;
    font-weight: bold;
}

.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 25px;
}

.ac-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ac-card {
    background: #fff;
    border: 1px solid #ddd;
}

.ac-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.ac-img-tall {
    height: 380px;
}

.ac-img-short {
    height: 170px;
}

.ac-img-large {
    height: 520px;
}

.ac-img-medium {
    height: 240px;
}

.ac-text {
    padding: 16px;
}

.ac-text h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
}
.ac-text h3 a{
    text-decoration: none;
    color: inherit;
}

.ac-text p {
    font-size: 13px;
    color: #666;
}

.ac-image-only {
    padding: 0;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .ac-section {
        padding: 25px 0;
    }

    .ac-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ac-img-tall,
    .ac-img-large {
        height: 260px;
    }

    .ac-img-short,
    .ac-img-medium {
        height: 180px;
    }

    .ac-text h3 {
        font-size: 16px;
    }
}


/* 8th section */
.discover-block {
    background: #fff;
    padding: 40px 0;
}

.discover-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 6px;
}

.discover-head {
    border-top: 5px solid #000;
    margin-bottom: 25px;
}

.discover-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 18px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.discover-title::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 26px;
    height: 100%;
    background: #2ec4ff;
    transform: skewX(-30deg);
}

.discover-grid {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1fr;
    gap: 30px;
}

.dc-left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin-bottom: 12px;
}

.dc-label {
    font-size: 11px;
    font-weight: bold;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 8px;
}

.dc-big-title {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 8px;
}
.dc-big-title a{
    text-decoration: none;
    color: inherit;
}

.dc-date {
    font-size: 12px;
    color: #777;
}

.dc-middle {
    position: relative;
}

.dc-middle img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.dc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
}

.dc-overlay h3 {
    font-size: 24px;
    line-height: 1.3;
    margin: 10px 0;
}
.dc-overlay h3 a{
    text-decoration: none;
    color: inherit;
}

.dc-adbox {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.dc-ad-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.dc-adbox img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dc-list h4 {
    font-size: 18px;
    line-height: 1.4;
}
.dc-list h4 a{
    text-decoration: none;
    color: inherit;
}

.dc-line {
    border-bottom: 2px solid #000;
    margin: 14px 0;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .discover-block {
        padding: 25px 0;
    }

    .discover-inner {
        padding: 0 20px;
    }

    .discover-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .discover-title::after {
        right: -14px;
        width: 20px;
    }
 
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dc-left img {
        height: 240px;
    }

    .dc-big-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .dc-middle img {
        height: 500px;
    }

    .dc-overlay {
        padding: 16px;
    }

    .dc-overlay h3 {
        font-size: 20px;
        line-height: 1.35;
    }
   
    .dc-adbox img {
        height: 200px;
    }

    .dc-list h4 {
        font-size: 16px;
    }

    .dc-line {
        margin: 12px 0;
    }
    
    .dc-label {
        font-size: 10px;
    }

    .dc-date {
        font-size: 11px;
    }
}


/* 9th section */
.category-section {
    background: #fff;
    padding: 30px 120px 40px;
}

.section-header {
    position: relative;
    margin-bottom: 25px;
    border-top: 5px solid #000;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 2px 16px;
    font-size: 20px;
    font-weight: bold;
}

/* Green accent */
.section-header h2::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    width: 18px;
    height: 100%;
    background: #2ecc71;
    transform: skewX(-30deg);
}

.category-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.post-card {
    background: #fff;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.post-content {
    padding: 18px;
}

.post-tag {
    font-size: 11px;
    font-weight: bold;
    color: #000;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 10px;
}

.post-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.post-content h3 a{
    text-decoration: none;
    color: inherit;
}

.post-date {
    font-size: 13px;
    color: #666;
}
/* =======================
   Category Section Responsive (≤768px)
======================= */
@media (max-width: 768px) {

    .category-section {
        padding: 25px 20px 30px;
    }
   
    .section-header h2 {
        font-size: 18px;
        padding: 2px 12px;
    }

    /* Adjust green accent */
    .section-header h2::after {
        right: -8px;
        width: 14px;
    }
    
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .post-card img {
        height: 200px;
    }

    .post-content {
        padding: 14px;
    }

    .post-content h3 {
        font-size: 18px;
    }

    .post-date {
        font-size: 12px;
    }
}


/* 11th section */
.ms-section {
    background: #fff;
    padding: 40px 0;
}

.ms-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.ms-head {
    border-top: 5px solid #000;
    margin-bottom: 25px;
}

.ms-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 18px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.ms-title::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 26px;
    height: 100%;
    background: #ff2b7a;
    transform: skewX(-30deg);
}

.ms-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}

.ms-row.reverse {
    grid-template-columns: 1fr 1.4fr;
}

.ms-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.ms-text h3 {
    font-size: 34px;
    line-height: 1.25;
    margin: 10px 0;
}
.ms-text h3 a{
    text-decoration: none;
    color: inherit;
}

.ms-cat {
    font-size: 11px;
    font-weight: bold;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 6px;
}

.ms-date {
    font-size: 12px;
    color: #777;
}

.ms-divider {
    border-bottom: 1px solid #ddd;
    margin: 30px 0;
}
/* ===== Sidebar ===== */
.ms-follow-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ms-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
/* Social box layout */
.ms-social {
    border: 1px solid #ddd;
    padding: 14px 8px;
    text-align: center;
    transition: 0.3s;
}

.ms-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
}
/* Label */
.ms-social span {
    font-size: 12px;
    display: block;
}

.ms-social:hover {
    background: #f5f5f5;
}

.ms-adbox {
    text-align: center;
}

.ms-ad-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.ms-adbox img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
/* Make right sidebar sticky */
.ms-sidebar {
    position: sticky;
    top: 20px;   /* distance from top when scrolling */
    align-self: start; /* important for grid layouts */
}
/* =========================
   More Stories - Mobile View
   ========================= */
@media (max-width: 768px) {

    .ms-section {
        padding: 25px 0;
    }

    .ms-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
   
    .ms-title {
        font-size: 18px;
        padding: 5px 14px;
    }

    .ms-title::after {
        right: -14px;
        width: 20px;
    }

    .ms-row,
    .ms-row.reverse {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
  
    .ms-image {
        order: 1;
    }

    .ms-text {
        order: 2;
    }

    .ms-image img {
        height: 220px;
    }

    .ms-text h3 {
        font-size: 22px;
        line-height: 1.35;
        margin: 8px 0;
    }

    .ms-cat {
        font-size: 10px;
    }

    .ms-date {
        font-size: 11px;
    }

    .ms-divider {
        margin: 25px 0;
    }

    .ms-sidebar {
        position: static;
    }

    .ms-follow-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 18px;
    }
 
    .ms-social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 25px;
    }

    .ms-social {
        padding: 12px 6px;
    }

    .ms-social img {
        width: 20px;
        height: 20px;
    }

    .ms-social span {
        font-size: 11px;
    }

    .ms-adbox img {
        height: 260px;
    }
}


/* category page */
.cat-head-section {
    padding: 20px 0;
    /* Dot pattern background */
    background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
    background-size: 14px 14px;
}

.cat-head-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.cat-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.cat-breadcrumb a {
    text-decoration: none;
    color: #777;
}

.cat-breadcrumb span {
    margin: 0 4px;
}

.cat-current {
    color: #333;
    font-weight: 500;
}

.cat-title {
    font-size: 46px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}
/* ===== Mobile ===== */
@media (max-width: 768px) {

    .cat-head-section {
        padding: 35px 0;
    }

    .cat-title {
        font-size: 32px;
    }

    .cat-breadcrumb {
        font-size: 13px;
    }
}


/* author page */
.author-head-wrap {
    padding: 50px 0;
    /* Dotted background */
    background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
    background-size: 14px 14px;
}

.author-head-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.author-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.author-breadcrumb a {
    text-decoration: none;
    color: #777;
}

.author-breadcrumb span {
    margin: 0 4px;
}

.author-profile {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.author-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.author-name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-verified {
    font-size: 16px;
    color: #ff2b7a;
    margin-left: 8px;
}

.author-bio {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 15px;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.author-socials {
    display: flex;
    gap: 12px;
}

.author-socials img {
    width: 18px;
    cursor: pointer;
    opacity: 0.8;
}

.author-socials img:hover {
    opacity: 1;
}
/* ===== Mobile ===== */
@media (max-width: 768px) {

    .author-head-wrap {
        padding: 35px 0;
    }

    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-name {
        font-size: 30px;
    }

    .author-bio {
        font-size: 14px;
    }
}


/* detail page */
.post-hero-section {
    padding: 20px 100px;
}

.post-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.post-hero-container {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px 10px;
}

.post-hero-breadcrumb {
    font-size: 12px;
    color: #777;
    margin-bottom: 14px;
}

.post-hero-category {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
    border-bottom: 3px solid #ff2b7a;
    display: inline-block;
    margin-bottom: 12px;
}

.post-hero-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.post-hero-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

.post-hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-hero-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.post-hero-author-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.post-hero-date {
    font-size: 12px;
    color: #777;
}

.post-hero-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
}

.post-hero-share img {
    width: 16px;
    cursor: pointer;
    opacity: 0.8;
}

.post-hero-share img:hover {
    opacity: 1;
}

.post-hero-divider {
    border-bottom: 2px solid #ddd;
    margin-top: 25px;
}
/* moible responsive */
@media (max-width: 768px) {
   
    .post-hero-section {
        padding: 20px;
    }
   
    .post-hero-image img {
        height: 260px;
    }

    .post-hero-container {
        padding: 20px 10px 0;
    }
   
    .post-hero-breadcrumb {
        font-size: 11px;
        line-height: 1.4;
    }

    .post-hero-category {
        font-size: 10px;
        margin-bottom: 10px;
    }
  
    .post-hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
 
    .post-hero-excerpt {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
  
    .post-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
  
    .post-hero-author img {
        width: 36px;
        height: 36px;
    }

    .post-hero-author-name {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .post-hero-date {
        font-size: 11px;
    }
   
    .post-hero-share {
        font-size: 12px;
        gap: 8px;
    }

    .post-hero-share img {
        width: 14px;
    }
   
    .post-hero-divider {
        margin-top: 18px;
    }
}


/* ===== Detail Extra Section ===== */
.detail-block {
    padding: 10px 0;
}
/* Main wrapper with 180px spacing */
.detail-wrapper {
    padding-left: 250px;
    padding-right: 180px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
}
/* ===== Share Column ===== */
.detail-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 120px;
}

.detail-share-title {
    font-size: 11px;
    color: black;
    letter-spacing: 1px;
}

.detail-share img {
    width: 18px;
    cursor: pointer;
    opacity: 0.8;
}

.detail-share img:hover {
    opacity: 1;
}

.detail-content {
    max-width: 760px;
}

.detail-drop {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-drop::first-letter {
    float: left;
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    margin-right: 12px;
    margin-top: 6px;
}

.detail-text {
    font-size: 16px;
    line-height: 1.8;
    color:black;
    margin: 25px 0;
}

.detail-quote {
    text-align: center;
    margin: 60px 0;
}

.detail-quote-mark {
    font-size: 70px;
    color: #ff2b7a;
    line-height: 1;
}

.detail-quote p {
    font-size: 24px;
    margin: 10px 0;
}

.detail-quote span {
    font-size: 14px;
    color: #777;
}
/* ===== Article Content Blocks ===== */
.article-block {
    margin: 40px 0;
}

.article-heading {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #000;
}

.article-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.article-image-wrap {
    margin: 30px 0;
    text-align: center;
}

.article-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-image-caption {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}
@media (max-width: 768px) {
   
    .detail-block {
        padding: 20px 0;
    }
    
    .detail-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-share {
        display: none;
    }
 
    .detail-content {
        max-width: 100%;
    }
   
    .detail-drop {
        font-size: 15px;
        line-height: 1.7;
    }

    .detail-drop::first-letter {
        font-size: 50px;
        margin-right: 8px;
    }
  
    .detail-text {
        font-size: 14px;
        line-height: 1.7;
        margin: 18px 0;
    }
 
    .detail-quote {
        margin: 40px 0;
    }

    .detail-quote-mark {
        font-size: 50px;
    }

    .detail-quote p {
        font-size: 18px;
        line-height: 1.5;
    }

    .detail-quote span {
        font-size: 12px;
    }
    /* ===== Article Blocks ===== */
    .article-block {
        margin: 30px 0;
    }

    .article-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .article-paragraph {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .article-image-wrap {
        margin: 20px 0;
    }

    .article-image-caption {
        font-size: 11px;
    }
}


/* ===== Article Footer Section ===== */
.article-footer-section {
    padding: 40px 0;
}

.article-footer-container {
    padding-left: 270px;
    padding-right: 270px;
}
/* ===== Share Row ===== */
.article-share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 2px dotted #ddd;
    border-bottom: 2px dotted #ddd;
    margin-bottom: 35px;
}

.article-share-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-share-left h3 {
    font-size: 24px;
    font-weight: 600;
}

.article-share-icon {
    font-size: 22px;
}
/* Buttons */
.article-share-right {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 13px;
}

.share-btn-icon {
    padding: 10px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
}

.share-btn img,
.share-btn-icon img {
    width: 16px;
}
/* ===== Author Box ===== */
.article-author-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-author-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author-name {
    font-size: 18px;
}
.article-author-name a{
    text-decoration: none;
    color: inherit;
}

.author-verified {
    color: #ff2b7a;
    margin-left: 6px;
    font-size: 14px;
}

.article-author-role {
    font-size: 14px;
    color: #777;
}

.article-author-follow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.article-author-follow img {
    width: 18px;
    cursor: pointer;
}
/* Bio */
.article-author-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .article-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .article-share-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .article-author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .article-author-img {
        width: 50px;
        height: 50px;
    }

    .article-author-name {
        font-size: 16px;
    }

    .article-author-bio {
        font-size: 14px;
    }
}


/* about page */
.about-white-section {
    background: #fff;
    padding: 50px 0;
}

.about-white-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 40px;
}

.about-white-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #000;
}

.about-white-subtitle {
    font-size: 28px;
    margin-bottom: 18px;
    color: #000;
}

.about-white-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 18px;
}

.about-white-image {
    margin: 30px 0;
}

.about-white-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-white-list {
    margin: 15px 0 25px 20px;
    color: #000;
}

.about-white-list li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.7;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .about-white-section {
        padding: 30px 0;
    }

    .about-white-container {
        padding: 0 20px;
    }

    .about-white-title {
        font-size: 30px;
    }

    .about-white-subtitle {
        font-size: 22px;
    }

    .about-white-text,
    .about-white-list li {
        font-size: 14px;
    }
}


/* privacy-policy page */
.privacy-page-section {
    background: #fff;
    padding: 50px 0;
}

.privacy-page-container {
    max-width: 900px;
    margin: auto;
    padding: 0 40px;
}

.privacy-page-title {
    font-size: 42px;
    margin-bottom: 10px;
    color: #000;
}

.privacy-page-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.privacy-page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.privacy-block {
    margin: 35px 0;
}

.privacy-heading {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
}
/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {

    .privacy-page-section {
        padding: 30px 0;
    }

    .privacy-page-container {
        padding: 0 20px;
    }

    .privacy-page-title {
        font-size: 30px;
    }

    .privacy-heading {
        font-size: 20px;
    }

    .privacy-page-text {
        font-size: 14px;
    }
}