* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #090718;
    color: #ffffff;
}

/* Header Styles */
.header {
    background-color: #E5E5E5;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.rate-link {
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-left: auto;
    margin-right: 0;
}

.rate-link:hover {
    opacity: 0.7;
}

/* Hero Section Styles */
.hero {
    width: 100%;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    background-color: #090718;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Background.jpg');
    background-size: cover;
    background-position: top;
    z-index: 1;
}

.hero-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 0;
    position: relative;
    z-index: 2;
}

/* .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
} */

.hero-title {
    color: #ffffff;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0px;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #E0E0E0;
    max-width: 600px;
}

/* Dating Sites Section */
.dating-sites {
    width: 100%;
    background-color: #090718;
    padding: 60px 0 80px;
}

.dating-sites-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.info-plate {
    background-color: #ffffff;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
}

.last-updated {
    background: #FFFFFF;
    border-radius: 4px 4px 0 0;
    padding: 16px 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 400;
    color: #333333;
}

.last-updated-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last-updated-label {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

.last-updated-date {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.rate-link-plate {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.rate-link-plate:hover {
    opacity: 0.7;
}

.site-card {
    background-color: #1a1333;
    border-radius: 0 0 12px 12px;
    padding: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.card-banner {
    position: absolute;
    top: -7px;
    left: 0;
    display: flex;
    z-index: 22;
}

.banner-number-circle {
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: radial-gradient(50% 50% at 50% 50%, #FC4FFF 0%, #972F99 100%);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
}

.banner-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    position: relative;
    top: 12px;
    left: 16px;
}

.banner-text {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 0% 50%);
    background: radial-gradient(50% 50% at 50% 50%, #FC4FFF 0%, #972F99 100%);
    padding: 6px 24px 6px 40px;
}

.card-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.site-logo img {
    width: 120px;
    height: 100%;
    object-fit: contain;
}

.logo-name {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 1px;
}

.granny-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: fit-content;
}

.heart-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.granny-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.site-features {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.feature-label {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.7;
    text-align: center;
    letter-spacing: 0.5px;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-bottom {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.site-description {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    max-width: 600px;
}

.rating-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 180px;
}

.rating-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.star.filled {
    color: #FFD700;
}


.btn-visit {
    background: linear-gradient(90deg, #F74DFA 0%, #9E329F 100%);
    border: none;
    color: #ffffff;
    padding: 12px 48px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s 
ease, box-shadow 0.2s 
ease;
    white-space: nowrap;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 77, 250, 0.3);
}

.btn-visit:active {
    transform: translateY(0);
}

/* Main Title Section */
.main-title-section {
    width: 100%;
    background-color: #090718;
}

.main-title-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

/* Info Sections */
.info-section {
    width: 100%;
    padding: 43px 0;
}

.info-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: #2E1F4047;
    padding: 35px;
}

.info-heading {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.3;
}

.info-content {
    margin-bottom: 40px;
}

.info-content p {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 25px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diamond-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.btn-love-fort {
    width: 184px;
    border: 1px solid #FD84FF;
    background: linear-gradient(90deg, #F74DFA 0%, #9E329F 100%);
    color: #ffffff;
    padding: 12px 48px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-love-fort:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 77, 250, 0.3);
}

.btn-love-fort:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    width: 100%;
    background-color: #090718;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.line {
    background: #2B2338;
    height: 1px;
    width: 100%;
    margin: 24px 0;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.footer-heart-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 11px;
    font-weight: 400;
    color: #A3A3B3;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    color: #A3A3B3;
    text-align: left;
}

/* Page Content Styles (FAQ, About Us) */
.page-content {
    width: 100%;
    background-color: #090718;
    padding: 60px 0 80px;
}

.page-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* FAQ Styles */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #2E1F4047;
    padding: 30px;
    border-radius: 8px;
}

.faq-question {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* About Us Styles */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-section {
    background: #2E1F4047;
    padding: 35px;
    border-radius: 8px;
}

.about-heading {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 16px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-list {
    margin: 20px 0;
    padding-left: 24px;
}

.about-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 12px;
}

.about-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 80px 40px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #E5E5E5;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #000000;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-container {
        padding: 60px 20px;
    }

    .hero-title {
        text-align: center;
        font-size: 28px;
    }

    .last-updated-label,
    .last-updated-date {
        font-size: 11px;
    }

    .hero-description {
        font-size: 14px;
        text-align: center;
    }

    .dating-sites-container {
        padding: 0 16px;
    }

    .card-top {
        flex-wrap: wrap;
    }
    
    .site-logo {
        order: 1;
    }

    .rating-section {
        order: 2;
        width: 100px;
    }

    .site-name-wrapper {
        order: 3;
        width: 100%;
    }

    .info-plate {
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .rate-link-plate {
        align-self: flex-end;
    }

    .site-card {
        padding: 30px 20px;
    }

    .card-content {
        flex-direction: column;
        gap: 30px;
    }

    .site-features {
        gap: 16px;
    }

    .site-description {
        font-size: 13px;
        color: #9CA3AF;
    }

    .site-name {
        font-size: 18px;
    }

    .card-bottom .btn-visit {
        width: 100%;
    }

    .main-title {
        font-size: 28px;
        padding: 0 16px;
        max-width: 100%;
    }

    .info-container {
        padding: 20px 16px;
    }

    .info-section {
       padding: 24px 16px;
    }

    .footer {
        padding: 24px 16px;
    }

    .footer-content {
        flex-direction: column;
    }

    .info-heading {
        font-size: 18px;
    }

    .info-content p {
        font-size: 15px;
    }

    .cta-text {
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-copyright {
        text-align: left;
    }

    .page-title {
        font-size: 32px;
    }

    .faq-question,
    .about-heading {
        font-size: 20px;
    }

    .faq-item,
    .about-section {
        padding: 20px;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background-color: #090718;
    padding: 0;
}

.faq-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
}

/* About Us Section */
.about-section {
    width: 100%;
    background-color: #090718;
    padding: 0;
}

.about-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    color: #ffffff;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-content li {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Responsive for FAQ and About */
@media (max-width: 768px) {
    .hero {
        max-height: 230px;
        min-height: 230px;
    }
    .faq-title,
    .about-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 20px;
    }

    .about-content h2 {
        font-size: 24px;
    }
}

/* Blog/Articles Styles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.article-card {
    background: #2E1F4047;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(247, 77, 250, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1333;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 16px;
    flex: 1;
}

.article-link {
    font-size: 14px;
    font-weight: 600;
    color: #F74DFA;
    text-decoration: none;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.article-link:hover {
    opacity: 0.7;
}

/* Article Single Page Styles */
.article-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #1a1333;
}

.article-hero-image {
    width: 100%;
    height: 100%;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 0;
}

.article-hero-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.article-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    padding: 20px 24px;
    border-radius: 8px;
    display: inline-block;
}

.article-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.article-wrapper {
    min-width: 0;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.article-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-back-link:hover {
    opacity: 0.7;
}

.article-back-link svg {
    width: 16px;
    height: 16px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.7;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.share-link:hover {
    opacity: 1;
}

.share-link svg {
    width: 20px;
    height: 20px;
}

.article-body {
    background: #2E1F4047;
    padding: 40px;
    border-radius: 8px;
}

.article-body p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.9;
}

.article-body li:last-child {
    margin-bottom: 0;
}

.article-body strong {
    font-weight: 600;
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.sidebar-card {
    background: #2E1F4047;
    padding: 24px;
    border-radius: 8px;
}

.sidebar-card-logo {
    margin-bottom: 16px;
}

.sidebar-card-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.sidebar-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.sidebar-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sidebar-stars {
    display: flex;
    gap: 4px;
}

.sidebar-rating-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.sidebar-btn {
    width: 100%;
}

/* Responsive for Blog */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-hero {
        height: 300px;
    }

    .article-hero-title {
        font-size: 24px;
        padding: 16px 20px;
    }

    .article-container {
        padding: 24px 20px;
        gap: 32px;
    }

    .article-body {
        padding: 24px;
    }

    .article-body h2 {
        font-size: 24px;
    }

    .article-navigation {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar-title {
        font-size: 20px;
    }
}

