/* Fonts */
@font-face {
    font-family: "Inter";
    src: url("../font/Inter-Medium.woff2") format("woff2"),
        url("../font/Inter-Medium.woff") format("woff"),
        url("../font/Inter-Medium.ttf") format("truetype"),
        url("../font/Inter-Medium.eot");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../font/Inter-Regular.woff2") format("woff2"),
        url("../font/Inter-Regular.woff") format("woff"),
        url("../font/Inter-Regular.ttf") format("truetype"),
        url("../font/Inter-Regular.eot");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../font/Inter-SemiBold.woff2") format("woff2"),
        url("../font/Inter-SemiBold.woff") format("woff"),
        url("../font/Inter-SemiBold.ttf") format("truetype"),
        url("../font/Inter-SemiBold.eot");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("../font/OpenSans-Regular.woff2") format("woff2"),
        url("../font/OpenSans-Regular.woff") format("woff"),
        url("../font/OpenSans-Regular.ttf") format("truetype"),
        url("../font/OpenSans-Regular.eot");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OpenSans";
    src: url("../font/OpenSans-SemiBold.woff2") format("woff2"),
        url("../font/OpenSans-SemiBold.woff") format("woff"),
        url("../font/OpenSans-SemiBold.ttf") format("truetype"),
        url("../font/OpenSans-SemiBold.eot");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../font/Roboto-Medium.woff2") format("woff2"),
        url("../font/Roboto-Medium.woff") format("woff"),
        url("../font/Roboto-Medium.ttf") format("truetype"),
        url("../font/Roboto-Medium.eot");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../font/Roboto-Regular.woff2") format("woff2"),
        url("../font/Roboto-Regular.woff") format("woff"),
        url("../font/Roboto-Regular.ttf") format("truetype"),
        url("../font/Roboto-Regular.eot");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFProDisplay";
    src: url("../font/SFProDisplay-Bold.woff2") format("woff2"),
        url("../font/SFProDisplay-Bold.woff") format("woff"),
        url("../font/SFProDisplay-Bold.ttf") format("truetype"),
        url("../font/SFProDisplay-Bold.eot");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
}

html,
body {
    scrollbar-gutter: stable;
}

body {
    font-family: "Inter";
    font-weight: 400;
    color: #1D1D1F;
}

.header {
    padding: 24px 16px 16px 16px;
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(36, 32, 31, 0.10);
    transition: all 0.4s;
}

.header .wrapper {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

.header .wrapper .logo {
    width: 150px;
    height: 40px;
}

.header .wrapper .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 31px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    background: rgba(120, 120, 128, 0.16);
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.slider::before {
    content: "";
    position: absolute;
    display: flex;
    width: 27px;
    height: 27px;
    padding: 6px 6px 5px 6px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-image: url(../image/sun.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 3px 1px 0px rgba(0, 0, 0, 0.06);
    left: 2px;
    transition: all 0.4s;
}

input:checked+.slider {
    background: rgba(120, 120, 128, 0.16);
}

input:checked+.slider::before {
    transform: translateX(27px);
}

.nav {
    display: flex;
    position: relative;
    gap: 8px;
}

.nav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    overflow: hidden;
}

.more {
    display: none;
    position: relative;
}

.more-btn {
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list li {
    display: flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    background: #EFEFEF;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s;
}

.nav-list li a {
    color: #1D1D1F;
    font-family: "OpenSans";
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    transition: all 0.4s;
}

.nav-list li.nav-list--active {
    border: 1px solid #9F9F9F;
    background: transparent;
}

.nav-list li.nav-list--active a {
    color: #EC2D1C;
}

.nav-list li:hover {
    border: 1px solid #9F9F9F;
    background: transparent;
}

.nav-list li:hover a {
    color: #EC2D1C;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 96px;
    border-radius: 8px;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
    background: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.dropdown li {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
}

.dropdown li a {
    color: #1D1D1F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.more.active .dropdown {
    display: block;
}

.dropdown.visible {
    display: flex;
    flex-direction: column;
}

.grid-main {
    padding: 32px 16px 32px 16px;
    transition: all 0.4s;
}

.grid-main .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1236px;
    margin: 0 auto;
}

.card {
    text-decoration: none;
    display: grid;
    transition: all 0.4s;
    text-decoration: none;
}

.card.half {
    min-width: 100%;
    flex: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.half-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.50);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 103px;
    gap: 16px;
    z-index: 3;
    transition: all 0.4s;
}

.half-title {
    color: #1D1D1F;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.4s;
}

.half-content--box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.half-content--author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.half-content--author img {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    overflow: hidden;
}

.half-content--name {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.half-content--date {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.half-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    max-height: 300px;
}

.half-content--img {
    position: relative;
    width: 100%;
    height: 100%;
}

.half-content--img::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.card.quarter {
    flex: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.quarter-box {
    display: flex;
    padding: 10px 10px 18px 10px;
    flex-direction: column;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.quarter-content--img {
    width: 100%;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.quarter-content--img::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.4s;
}

.quarter-content--img img,
.quarter-content--img video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.card--play {
    background: url(../image/play-btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 56px;
    height: 56px;
    position: absolute;
    padding: 0;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.quarter-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 12px;
    height: calc(100% - 170px);
    gap: 8px;
}

.quarter-title {
    color: #1D1D1F;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.4s;
}

.quarter-content--box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quarter-content--author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quarter-content--author img {
    width: 16px;
    height: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.quarter-content--name {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.quarter-content--date {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.quarter-list {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
    padding: 16px;
    text-decoration: none;
}

.quarter-list--box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #EFEFEF;
    text-decoration: none;
}

.quarter-list--box:nth-of-type(1) {
    padding-top: 0;
}

.quarter-list--box:nth-last-of-type(1) {
    border-bottom: 0;
}

.quarter-list--right {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.quarter-list--right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.quarter-list--right::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.quarter-list--left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quarter-list--avatar {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quarter-list--avatar img {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    overflow: hidden;
}

.quarter-list--text {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.quarter-list--title {
    color: #1D1D1F;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    transition: all 0.4s;
}

.grid-main .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.card {
    width: 100%;
}

.card.quarter {
    grid-column: span 1;
}

.card.half {
    grid-column: span 2;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 4px 16px;
    transition: transform 0.3s ease-in-out;
    background: #FFF;
    box-shadow: 8px 0px 24px 0px rgba(36, 32, 31, 0.10);
    z-index: 10;
}

.footer.hidden {
    transform: translateY(100%);
}

.footer .wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer .wrapper p {
    color: #1D1D1F;
    font-size: 11px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.4s;
    white-space: nowrap;
}

.footer__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.footer__link {
    text-decoration: none;
    color: #1D1D1F;
    font-size: 11px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.4s;
}


/* Dark Mode */

.dark-mode .slider::before {
    background-image: url(../image/moon.svg);
    background-color: #0D0D0D;
    background-size: 16px;
}

.dark-mode .header {
    background: #191919;
}

.dark-mode .footer {
    background: #191919;
    box-shadow: 8px 0px 24px 0px rgba(36, 32, 31, 0.10);
}

.dark-mode .wrapper p {
    color: #E0E0E2;
}

.dark-mode .footer__link {
    color: #E0E0E2;
}

.dark-mode .quarter-box {
    background: #191919;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .quarter-title {
    color: #E0E0E2;
}

.dark-mode .quarter-content--name {
    color: rgba(255, 255, 255, 0.60);
}

.dark-mode .quarter-content--date {
    color: rgba(255, 255, 255, 0.60)
}

.dark-mode .quarter-list {
    background: #191919;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .quarter-list--text {
    color: rgba(255, 255, 255, 0.60)
}

.dark-mode .quarter-list--title {
    color: #E0E0E2;
}

.dark-mode .quarter-list--box {
    border-bottom: 1px solid #2D2D2D;
}

.dark-mode .quarter-list--box:nth-last-of-type(1) {
    border-bottom: 0;
}

.dark-mode .grid-main {
    background: #0D0D0D;
}

.dark-mode .half-title {
    color: #E0E0E2;
}

.dark-mode .half-content--name {
    color: rgba(255, 255, 255, 0.60);
}

.dark-mode .half-content--date {
    color: rgba(255, 255, 255, 0.60);
}

.dark-mode .half-content {
    background: rgba(13, 13, 13, 0.50);
}

.dark-mode .nav-list li {
    background: #303030;
}

.dark-mode .nav-list li a {
    color: #E0E0E2;
}

.dark-mode .nav-list li.nav-list--active a {
    color: #EC2D1C;
}

.dark-mode .nav-list li:hover a {
    color: #EC2D1C;
}

.dark-mode .more-btn img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(7%) saturate(24%) hue-rotate(202deg) brightness(94%) contrast(91%);
            filter: brightness(0) saturate(100%) invert(96%) sepia(7%) saturate(24%) hue-rotate(202deg) brightness(94%) contrast(91%);
}

.dark-mode .header-banner {
    background: #0D0D0D;
}

.dark-mode .header-banner .wrapper p {
    color: #0D0D0D;
}

.dark-mode .article-main {
    background: #0D0D0D;
}

.dark-mode .breadcrumbs li a,
.dark-mode .breadcrumbs li span {
    color: #E0E0E2;
}

.dark-mode .breadcrumbs li::after {
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-info-box img {
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-title {
    color: #E0E0E2;
}

.dark-mode .article-info-box {
    color: #E0E0E2;
}

.dark-mode .article-sub-title {
    color: #E0E0E2;
}

.dark-mode .article-sub-text {
    color: #E0E0E2;
}

.dark-mode .article-sub-text p {
    color: #E0E0E2;
}

.dark-mode .article-sub-text span,
.dark-mode .article-sub-text a {
    color: #E0E0E2;
}

.dark-mode .article-autor-name {
    color: #E0E0E2;
}

.dark-mode .article-autor-post {
    color: #E0E0E2;
}

.dark-mode .article-sub {
    color: #E0E0E2;
}

.dark-mode .article-footer {
    background: #191919;
}

.dark-mode .article-social ul li a img {
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-footer-nav ul li::before {
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
            filter: brightness(0) saturate(100%) invert(97%) sepia(15%) saturate(13%) hue-rotate(140deg) brightness(93%) contrast(90%);
}

.dark-mode .article-footer-nav ul li a {
    color: #E0E0E2;
}

.dark-mode .article-center__banner p {
    color: #0D0D0D;
}

.dark-mode .article-video .article-video-content {
    background: #191919;
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.dark-mode .article-video-text {
    color: #E0E0E2;
}





.header-banner {
    padding: 16px 0;
    transition: all 0.4s;
    display: none;
}

.header-banner .wrapper {
    width: 320px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.header-banner__blur {
    width: 100%;
    height: 100%;
}

.header-banner__blur img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.header-banner .wrapper p {
    color: #FFF;
    text-align: center;
    font-family: "Roboto";
    font-size: 16.667px;
    font-weight: 500;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s;
}

.article-left-sidebar {
    display: none;
}

.article-right-sidebar {
    display: none;
}

.article-big__img {
    height: 343px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.article-big__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.article-center__banner {
    margin: 0 12px 0 12px;
    height: 50px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.article-center__banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.article-center__banner p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #FFF;
    text-align: center;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.4s;
}

.breadcrumbs {
    padding: 24px 0;
    display: flex;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li a,
.breadcrumbs li span {
    color: #1D1D1F;
    font-size: 12px;
    line-height: 150%;
    text-decoration: none;
    transition: all 0.4s;
}

.breadcrumbs li::after {
    content: "";
    background-image: url(../image/breadcrumbs.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 12px;
    display: flex;
}

.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
}

.article-main {
    padding: 16px 16px 40px 16px;
    transition: all 0.4s;
}

.article-title {
    color: #1D1D1F;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    transition: all 0.4s;
}

.article-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-info-box {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    transition: all 0.4s;
}

.article-info-box img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
}

.article-sub-title {
    color: #101828;
    font-size: 20px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
    transition: all 0.4s;
}

.article-sub-text {
    color: #242424;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    transition: all 0.4s;
}

.article-sub-text p {
    color: #242424;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.4s;
}

.article-sub-text span,
.article-sub-text a {
    color: #242424;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-decoration: underline;
    transition: all 0.4s;
}

.article-info-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.article-info-card .card {
    display: none;
}

.article-info-card .card:nth-last-of-type(1) {
    display: block;
}

.article-info-card {
    margin-bottom: 32px;
}

.article-center__banner2 {
    margin-bottom: 32px;
}

.article-autor {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #E1E1E1;
}

.article-autor-box {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.article-autor-box img {
    width: 48px;
    height: 48px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 8px;
    overflow: hidden;
}

.article-autor-name {
    color: #242424;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    transition: all 0.4s;
}

.article-autor-post {
    color: rgba(0, 0, 0, 0.60);
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
    transition: all 0.4s;
}

.article-main-wrapper {
    margin-bottom: 32px;
}

.article-sponsored {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.article-sponsored:nth-last-of-type(1) {
    margin-bottom: 0;
}

.article-sub {
    color: #101828;
    font-size: 20px;
    font-weight: 600;
    line-height: 38px;
    transition: all 0.4s;
}

.article-sponsored-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.article-footer {
    background: #FFF;
    box-shadow: 10px 5px 24px 0px rgba(36, 32, 31, 0.10);
    transition: all 0.4s;
}

.article-footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 16px 0 16px;
}

.article-footer-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.article-footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.article-footer-logo {
    width: 150px;
    height: 40px;
}

.article-footer-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-footer-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.article-footer-col p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.article-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-social p {
    color: #1D1D1F;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.article-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.article-social ul li a img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
}

.article-footer-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.article-footer-nav ul li::before {
    content: "";
    background-image: url(../image/breadcrumbs.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}

.article-footer-nav ul li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-footer-nav ul li a {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    transition: all 0.4s;
}

.article-footer-filter {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 14px;
    align-self: stretch;
    flex-wrap: wrap;
}

.article-footer-filter li a {
    display: flex;
    padding: 10px 24px;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 50px;
    font-family: "Inter";
    background: #EFEFEF;
    color: #1D1D1F;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
}

.article-footer-bottom {
    display: flex;
    padding: 24px 0px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-top: 1px solid #D6D6D6;
}

.article-footer-bottom p {
    color: #1D1D1F;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}

.article-footer-bottom .footer__link {
    font-size: 12px;
}

.article-footer-bottom .footer__list {
    justify-content: center;
}

.article-video {
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
}

.article-video .quarter-content--img {
    height: 220px;
    border-radius: 12px 12px 0px 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.07);
}

.article-video .article-video-content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 0px 0px 8px 8px;
    background: rgba(255, 255, 255, 0.50);
    transition: all 0.4s;
}

.article-video-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: #1D1D1F;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    transition: all 0.4s;
}

.article-video .quarter-content--box {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    max-width: 800px;
    width:100%;
    max-height: 500px;
    height: 100%;
    text-align: center;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #0D0D0D;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.article-main-wrapper {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 300px) minmax(728px, 1fr) minmax(220px, 300px) 1fr;
}
   
.article-right-sidebar {
    grid-column: 6 / 4;
}

.article-left-sidebar {
    grid-column: 1 / 3;
}









@media (max-width: 1067px) {
    .grid-main .wrapper {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        max-width: 834px;
    }

    .card.half {
        grid-column: span 2;
    }
}

@media (min-width: 1068px) {
    .grid-main .wrapper {
        grid-template-columns: repeat(4, minmax(250px, 1fr));
    }

    .card.half {
        grid-column: span 2;
    }
}

@media (min-width: 1279px) {
    .grid-main .wrapper {
        grid-template-columns: repeat(4, minmax(250px, 1fr));
    }

    .card.half {
        grid-column: span 2;
    }

    .article-main .article-center {
        min-width: 728px;
    }
}

@media (max-width: 576px) {
    .grid-main .wrapper {
        grid-template-columns: 1fr;
    }

    .card {
        grid-column: span 1;
    }

    .card.half {
        grid-column: span 1;
    }
}

@media (max-width: 1067px) {
    .grid-main .wrapper {
        max-width: 834px;
    }
}

@media (min-width: 1200px) {
    .header .wrapper {
        gap: 40px;
    }

    .grid-main .wrapper {
        max-width: 1236px;
    }

    .article-info-card {
        display: none;
    }

    .article-center__banner2 {
        display: none;
    }

    .article-left-sidebar {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .article-right-sidebar {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .article-main-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        max-width: 1360px;
        margin: 0 auto 40px auto;
    }

    .article-main .article-sponsored {
        max-width: 1360px;
    }

    .article-center {
        min-width: 520px;
    }

    .article-footer .wrapper {
        max-width: 1360px;
        width: 100%;
        margin: 0 auto;
    }

    .article-sponsored-box {
        grid-template-columns: repeat(4, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .wrapper {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .nav {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .header .wrapper {
        display: flex;
        justify-content: space-between;
    }

    .nav {
        max-width: calc(100% - 288px);
        width: 100%;
    }

    .half-content {
        min-height: 70px;
    }

    .half-title {
        font-size: 16px;
        font-weight: 600;
    }

    .quarter .half-title {
        font-weight: 500;
        font-size: 15px;
    }

    .quarter-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 140%;
    }

    .quarter-list--title {
        font-size: 16px;
        font-weight: 500;
        line-height: 140%;
    }

    .footer .wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer .wrapper p {
        font-size: 12px;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__list {
        justify-content: flex-end;
    }

    .article-info-card .card {
        display: grid;
    }

    .article-footer-col {
        max-width: 352px;
        width: 100%;
    }

    .article-footer-nav {
        max-width: 302px;
        width: 100%;
    }

    .article-footer-filter {
        width: 100%;
        flex: 1;
        min-width: 100%;
    }

    .article-footer-top {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-sub-title {
        font-size: 24px;
    }

    .article-sub {
        font-size: 24px;
    }

    .article-big__img {
        height: 500px;
    }

    .article-center__banner2 {
        margin-bottom: 24px;
    }

    .article-sponsored {
        max-width: 924px;
        width: 100%;
        margin: 0 auto 32px auto;
    }

    .article-center__banner {
        height: 99px;
    }

    .article-main {
        padding: 32px 16px 40px 16px;
    }

    .article-info-wrapper {
        max-width: 728px;
        width: 100%;
        margin: 0 auto;
    }

    .article-info-card {
        max-width: 924px;
        width: 100%;
        margin: 0 auto 32px auto;
    }

    .article-video .quarter-content--img {
        height: 388px;
    }

    .header-banner {
        display: block;
    }

}

@media (min-width: 992px) {
    .article-footer-filter {
        max-width: 358px;
        min-width: auto;
    }

    .article-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .article-footer-bottom p {
        white-space: nowrap;
    }

    .article-footer-bottom .footer__list {
        justify-content: flex-end;
    }
}