/*
 Table Of Contents
 1.) Media Query for sm
 2.) Media Query for md
 3.) Media Query for lg
 ===============================================*/
/* 
  1.) Media Query for sm
 ----------------------------- */

/* Premium Solutions Section */
.premium-solutions-section {
    padding: 50px 20px;
    background-color: #053270;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.solutions-header {
    text-align: center;
    margin-bottom: 50px;
}

.solutions-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4fa3d1 0%, #2d8bb8 100%);
    margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Solution Card */
.solution-card {
    background: white;
    padding: 20px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    box-shadow: 0 8px 20px rgba(32, 59, 106, 0.15);
    transform: translateY(-5px);
}

/* Card Top Border */
.card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #232323 0%, #2d8bb8 100%);
    border-radius: 12px 12px 0 0;
}

/* Icon */
.solution-icon {
    text-align: center;
    margin-bottom: 5px;
    margin-top: -10px;
}

.solution-icon i {
    font-size: 48px;
    color: #2d8bb8;
}

/* Title */
.solution-title {
    font-size: 20px;
    font-weight: 700;
    color: #203b6a;
    margin: 0 0 0px 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Description */
.solution-description {
    color: #666;
    text-align: center;
    margin: 4px 0 0px 0;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 14px !important;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.features-list li {
    font-size: 13px;
    color: #555;
    padding: 4px 11px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #4fa3d1;
    margin-right: 10px;
    font-size: 14px;
}

/* Button Container */
.button-container {
    text-align: center;
    margin-top: auto;
}

.explore-btn {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(90deg, #4fa3d1 0%, #2d8bb8 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.explore-btn:hover {
    background: linear-gradient(90deg, #3d8fb8 0%, #1a73a0 100%);
    box-shadow: 0 4px 12px rgba(45, 139, 184, 0.3);
    transform: scale(1.02);
}

.explore-btn:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-title {
        font-size: 32px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .solution-card {
        padding: 15px 12px;
    }

    .solution-icon i {
        font-size: 36px;
    }

    .solution-title {
        font-size: 16px;
    }

    .solution-description {
        font-size: 12px;
    }

    .features-list li {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 26px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .solution-card {
        padding: 15px 12px;
    }

    .solution-icon i {
        font-size: 32px;
    }
}

/* ============================================
   CA Reference Books Section - Styles
   ============================================ */
.ca-reference-books {
    background: #053270;
    padding: 35px 20px;
    position: relative;
    overflow: hidden;
}

/* Optional: Add decorative background pattern */
.ca-reference-books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.books-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Header Section */
.books-header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.books-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
}

.books-subtitle {
    font-size: 16px;
    color: #e0e0e0;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Slider Wrapper */
.books-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: center;
}

/* Main Slider */
.books-slider {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.books-slider::-webkit-scrollbar {
    display: none;
}

/* Book Slide - REDUCED SIZE */
.book-slide {
    flex: 0 0 auto;
    width: 154px;
    scroll-snap-align: start;
    animation: slideInUp 0.6s ease-out;
}

.book-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 240px;
}

.book-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.book-image {
    width: 159px;
    height: 300px;
    object-fit: fill;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-link:hover .book-image {
    transform: scale(1.05);
}

/* Navigation Buttons - POSITIONED OUTSIDE */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #1a472a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover:not(:disabled) {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #d4af37;
}

.slider-nav:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-prev-books {
    left: -46px;
}

.slider-next-books {
    right: -46px;
}

.banner-prev {
    left: 0;
}

.banner-next {
    right: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Progressive Enhancement */

/* Tablet & Medium Devices (1025px and below) */
@media (max-width: 1024px) {
    .ca-reference-books {
        padding: 40px 20px;
    }

    .books-title {
        font-size: 38px;
    }

    .book-slide {
        width: 150px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-prev-books {
        left: -35px;
    }

    .slider-next-books {
        right: -35px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .ca-reference-books {
        padding: 35px 15px;
    }

    .books-container {
        max-width: 100%;
    }

    .books-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .books-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .book-slide {
        width: 140px;
    }

    .book-link {
        height: 210px;
    }

    .book-image {
        width: 140px;
        height: 210px;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .slider-prev-books {
        left: -30px;
    }

    .slider-next-books {
        right: -30px;
    }

    .books-slider-wrapper {
        gap: 15px;
    }

    .books-slider {
        gap: 15px;
    }
}

/* Small Tablet & Large Mobile (600px and below) */
@media (max-width: 600px) {
    .ca-reference-books {
        padding: 30px 12px;
    }

    .books-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .books-subtitle {
        font-size: 13px;
        padding: 0 5px;
    }

    .book-slide {
        width: 130px;
    }

    .book-link {
        height: 195px;
    }

    .book-image {
        width: 130px;
        height: 195px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slider-prev-books {
        left: -25px;
    }

    .slider-next-books {
        right: -25px;
    }

    .books-slider-wrapper {
        gap: 12px;
    }

    .books-slider {
        gap: 12px;
        padding: 8px 0;
    }
}

/* Mobile Portrait (480px and below) - SHOW ONLY ONE BOOK AT A TIME */
@media (max-width: 480px) {
    .ca-reference-books {
        padding: 25px 10px;
    }

    .books-header {
        margin-bottom: 18px;
    }

    .books-title {
        font-size: 24px;
        margin: 0 0 8px 0;
    }

    .books-subtitle {
        font-size: 12px;
        padding: 0;
        color: #d0d0d0;
    }

    /* Single book display on mobile */
    .books-slider-wrapper {
        gap: 10px;
        padding: 0 10px;
    }

    .books-slider {
        gap: 0;
        padding: 5px 0;
        scroll-snap-type: x mandatory;
    }

    .book-slide {
        width: 100%;
        max-width: 280px;
        flex: 0 0 100%;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
    }

    .book-link {
        height: 380px;
        width: 100%;
        max-width: 260px;
        border-radius: 12px;
    }

    .book-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Adjust navigation buttons for mobile */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .slider-nav:hover:not(:disabled) {
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-50%) scale(1.05);
    }

    .slider-prev-books {
        left: 8px;
    }

    .slider-next-books {
        right: 8px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .ca-reference-books {
        padding: 20px 8px;
    }

    .books-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .books-subtitle {
        font-size: 11px;
    }

    /* Maintain single book view on extra small devices */
    .books-slider-wrapper {
        gap: 8px;
        padding: 0 8px;
    }

    .book-slide {
        width: 100%;
        max-width: 240px;
        flex: 0 0 100%;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
    }

    .book-link {
        height: 340px;
        width: 100%;
        max-width: 220px;
        border-radius: 10px;
    }

    .book-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-prev-books {
        left: 5px;
    }

    .slider-next-books {
        right: 5px;
    }

    .books-slider {
        gap: 0;
    }
}

/* Accessibility */
.slider-nav:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.slider-nav:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .slider-nav {
        display: none;
    }

    .ca-reference-books {
        padding: 20px;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .books-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .books-subtitle {
        font-size: 12px;
    }

    .book-slide {
        width: 110px;
    }

    .book-link {
        height: 160px;
    }

    .book-image {
        width: 110px;
        height: 160px;
    }

    /* Adjust for landscape mobile if needed */
    @media (max-width: 480px) {
        .book-slide {
            width: 100%;
            max-width: 220px;
            flex: 0 0 100%;
        }

        .book-link {
            height: 220px;
        }
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .slider-nav {
        width: 44px;
        height: 44px;
    }

    .book-link {
        transition: all 0.2s ease-out;
    }

    .book-link:active {
        transform: scale(0.98);
    }

    /* Improve touch targets on mobile */
    @media (max-width: 480px) {
        .slider-nav {
            width: 48px;
            height: 48px;
        }
    }
}

/* Smooth scrolling behavior support */
@supports (scroll-behavior: smooth) {
    .books-slider {
        scroll-behavior: smooth;
    }
}
/**
 * Tax Law Articles Section - Styling
 * 
 * File: assets/css/tax-law-articles.css
 * 
 * CodeIgniter 3.1 - Tax Law Themed Professional Design
 * Color Scheme: Navy (#1a3a52), Teal (#3d8b8b), Gold (#d4a574)
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f5f7fa;
        }

        /* ========================================
           CSS VARIABLES
           ======================================== */

        :root {
            /* Primary Colors */
            --primary-dark: #0f3460;
            --primary-mid: #1f5a8f;
            --accent-gold: #d4a574;
            --accent-teal: #3d8b8b;
            --accent-coral: #e74c3c;
            
            /* Neutral Colors */
            --bg-light: #f5f7fa;
            --bg-white: #ffffff;
            --text-dark: #1a1a2e;
            --text-muted: #6b7280;
            --border-light: #e0e7ff;
            
            /* Effects */
            --shadow-sm: 0 2px 8px rgba(15, 52, 96, 0.08);
            --shadow-md: 0 8px 20px rgba(15, 52, 96, 0.12);
            --shadow-lg: 0 16px 40px rgba(15, 52, 96, 0.18);
            --shadow-xl: 0 20px 60px rgba(15, 52, 96, 0.25);
        }

        /* ========================================
           BASE STYLES & SECTION BACKGROUND
           ======================================== */

        .tax-law-articles {
            position: relative;
            padding: 20px 20px;
            overflow: hidden;
            background: #fff;
        }

    

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ========================================
           HEADER SECTION
           ======================================== */

        .articles-header {
            text-align: center;
            margin-top: 40px;
            z-index: 1;
            animation: slideDownIn 0.7s ease-out;
        }

        .articles-title {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: #203b6a;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .articles-subtitle {
            font-size: 1.15rem;
            color: #163753;
            text-align: center;
            margin: 0;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 0.5px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
            font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ========================================
           CONTAINER & GRID
           ======================================== */

        .articles-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ========================================
           ARTICLE CARD
           ======================================== */

        .article-box {
            background: var(--bg-white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid var(--border-light);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            animation: fadeInUp 0.6s ease-out;
        }

        .article-box:nth-child(1) { animation-delay: 0.1s; }
        .article-box:nth-child(2) { animation-delay: 0.2s; }
        .article-box:nth-child(3) { animation-delay: 0.3s; }
        .article-box:nth-child(4) { animation-delay: 0.4s; }

        /* Accent top border that animates on hover */
        .article-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-mid) 0%, var(--accent-teal) 50%, var(--accent-gold) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .article-box:hover::before {
            transform: scaleX(1);
        }

        .article-box:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-gold);
        }

        /* ========================================
           ICON WRAPPER
           ======================================== */

        .article-icon-wrapper {
            padding: 35px 30px;
            background: linear-gradient(135deg, rgba(31, 90, 143, 0.05) 0%, rgba(61, 139, 139, 0.05) 100%);
            border-bottom: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            position: relative;
            overflow: hidden;
        }

        .article-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            z-index: 0;
        }

        .article-box:hover .article-icon-wrapper::after {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
        }

        .article-icon {
            width: 70px;
            height: 70px;
            color: var(--primary-dark);
            stroke: var(--primary-dark);
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.5;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
        }

        .article-box:hover .article-icon {
            color: var(--accent-teal);
            stroke: var(--accent-teal);
            transform: scale(1.15) rotate(5deg);
        }

        /* ========================================
           CONTENT SECTION
           ======================================== */

        .article-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .article-name {
            margin: 0;
            font-size: 1.95rem;
            font-weight: 700;
            color: #203b6a;
            font-family:poppins;
            line-height: 1.35;
            font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
            letter-spacing: -0.3px;
        }

        .article-name a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .article-name a:hover {
            color: var(--accent-teal);
        }

        .article-subtitle-text {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
            font-weight: 400;
            font-size: 15px !important;
            text-align: left ;
            font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
        }

        .article-meta {
            padding-top: 18px;
            border-top: 2px solid var(--border-light);
            display: flex;
            align-items: center;
        }

        .article-author {
            color: var(--primary-mid);
            font-weight: 600;
            font-style: italic;
            text-transform: capitalize;
            letter-spacing: 0.3px;
        }

        /* ========================================
           FOOTER & BUTTON SECTION
           ======================================== */


        .article-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            text-decoration: none;
            color: white;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.4px;
            border: 2px solid var(--primary-dark);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(15, 52, 96, 0.2);
        }

        .article-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-gold) 100%);
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
            border-radius: 8px;
        }

        .article-link:hover::before {
            left: 0;
        }

        .article-link:hover {
            transform: translateX(6px) translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 52, 96, 0.3);
            border-color: var(--accent-teal);
            color: white;
        }

        .link-arrow {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 1.1rem;
            font-weight: bold;
        }

        .article-link:hover .link-arrow {
            transform: translateX(5px);
        }

        /* ========================================
           ANIMATIONS
           ======================================== */

        @keyframes slideDownIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 80px;
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(20px);
            }
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */

        @media (max-width: 768px) {
            .tax-law-articles {
                padding: 50px 15px;
            }

            .articles-title {
                font-size: 2.2rem;
            }

            .articles-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .tax-law-articles {
                padding: 35px 12px;
            }

            .articles-title {
                font-size: 1.8rem;
            }

            .article-icon {
                width: 55px;
                height: 55px;
            }

            .article-link {
                width: 100%;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }




        