/*
Theme Name: IT Themes - Desktop Styles
Description: Styles pour desktop et tablette
Version: 3.9.1
*/

/* ========================================
   VARIABLES CSS
======================================== */
:root {
    --primary-color: #F4C2C2;
    --primary-hover: #FFB6C1;
    --secondary-color: #89CFF0;
    --accent-color: #00a8e8;
    --text-dark: #2c3e50;
    --text-medium: #7f8c8d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-light: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-circle: 50%;
}

/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--spacing-xl) 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   BANNIÈRES PRINCIPALES
======================================== */
.hero-banners {
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.banner-container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 420px;
    cursor: pointer;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-banner:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.banner-content-box {
    position: absolute;
    top: 50%;
    left: var(--spacing-xl);
    transform: translateY(-50%);
    z-index: 2;
    max-width: 450px;
}

.banner-label {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}

.banner-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.banner-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 194, 194, 0.3);
}

.banner-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 194, 194, 0.4);
}

.hero-banner-secondary {
    height: 420px;
}

.banner-content-secondary {
    top: auto;
    bottom: var(--spacing-lg);
    left: var(--spacing-md);
    transform: none;
}

.banner-title-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.banner-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.banner-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ========================================
   CATÉGORIES POPULAIRES
======================================== */
.popular-categories {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
}

.popular-categories .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
}

.popular-categories .section-subtitle {
    display: block;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
}

.categories-carousel {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.categories-carousel::-webkit-scrollbar {
    height: 0;
    display: none;
}

.category-pill {
    flex: 0 0 auto;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.category-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-pill:nth-child(1) { background: linear-gradient(135deg, #FFE5E5 0%, #FFC7C7 100%); }
.category-pill:nth-child(2) { background: linear-gradient(135deg, #E5F3FF 0%, #C7E3FF 100%); }
.category-pill:nth-child(3) { background: linear-gradient(135deg, #FFF5E5 0%, #FFE7C7 100%); }
.category-pill:nth-child(4) { background: linear-gradient(135deg, #F0E5FF 0%, #E0C7FF 100%); }
.category-pill:nth-child(5) { background: linear-gradient(135deg, #E5FFF0 0%, #C7FFE0 100%); }
.category-pill:nth-child(6) { background: linear-gradient(135deg, #FFE5F5 0%, #FFC7E3 100%); }
.category-pill:nth-child(7) { background: linear-gradient(135deg, #FFF9E5 0%, #FFF0C7 100%); }
.category-pill:nth-child(8) { background: linear-gradient(135deg, #E5FFFD 0%, #C7FFF8 100%); }

/* ========================================
   PRODUITS TENDANCES
======================================== */
.trending-products {
    background: var(--bg-section);
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    display: block;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

.product-category {
    display: block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   SECTION BLOG
======================================== */
.blog-section {
    background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 194, 194, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(137, 207, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: var(--spacing-xl);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(244, 194, 194, 0.2);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(244, 194, 194, 0.25);
    border-color: var(--primary-color);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5E5 0%, #E5F3FF 100%);
}

.blog-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 194, 194, 0.5) 0%, rgba(137, 207, 240, 0.5) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 0.6;
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category-badge {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.blog-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-size: 0.8rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F8F9FA;
}

.blog-meta time {
    font-weight: 600;
    color: var(--primary-color);
}

.blog-meta-separator {
    color: var(--border-light);
    font-weight: bold;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.reading-time::before {
    content: '📖';
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.5;
    min-height: 4em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
    color: var(--primary-hover);
}

.blog-card:hover .blog-read-more::after {
    width: 100%;
}

.blog-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFB6C1 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(244, 194, 194, 0.4);
    position: relative;
    overflow: hidden;
}

.blog-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.blog-cta-button:hover::before {
    left: 100%;
}

.blog-cta-button:hover {
    background: linear-gradient(135deg, #FFB6C1 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 194, 194, 0.5);
    gap: 16px;
}

.blog-cta-button svg {
    transition: transform 0.3s ease;
}

.blog-cta-button:hover svg {
    transform: translateX(6px);
}

/* ========================================
   NOUVEAUX PRODUITS
======================================== */
.new-products {
    background: transparent;
}

.products-carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding: var(--spacing-md) 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.products-carousel::-webkit-scrollbar {
    height: 6px;
}

.products-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-carousel::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.circular-product {
    flex: 0 0 auto;
    text-align: center;
    width: 180px;
}

.circular-product-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-circle);
    overflow: hidden;
    margin: 0 auto var(--spacing-sm);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.circular-product:hover .circular-product-image {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.circular-product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   BANNIÈRES SECONDAIRES
======================================== */
.secondary-banners {
    padding: var(--spacing-xl) 0;
}

.secondary-banners .container {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.banner-left-text {
    padding-right: var(--spacing-lg);
}

.banner-left-text .label {
    display: block;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-left-text .title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.discover-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.discover-link:hover {
    color: var(--primary-hover);
    padding-left: 10px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.small-banner {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 0;
}

.small-banner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.small-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.small-banner:hover img {
    transform: scale(1.08);
}

/* ========================================
   GRILLE DE CATÉGORIES
======================================== */
.categories-grid {
    background: var(--bg-light);
    padding: var(--spacing-xxl) 0;
}

.categories-grid .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.categories-grid .section-subtitle {
    display: block;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.grid-4-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.category-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    width: 100%;
    min-width: 0;
}

.category-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-box:hover img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.category-box:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.category-box h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.category-box:hover h3 {
    padding-bottom: var(--spacing-xl);
    font-size: 1.5rem;
}

/* ========================================
   BANNIÈRE PLEINE LARGEUR (FORMAT 16:9)
======================================== */
.full-width-banner {
    padding: 0;
    margin: var(--spacing-xl) 0;
    overflow: hidden;
}

.banner-image-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 0;
    padding-bottom: 42.42%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.banner-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-content-centered h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.banner-content-centered p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================================
   RESPONSIVE - TABLETTES (1024px)
======================================== */
@media screen and (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr;
    }
    
    .hero-banner-secondary {
        height: 300px;
    }
    
    .secondary-banners .container {
        grid-template-columns: 1fr;
    }
    
    .banner-left-text {
        text-align: left;
        padding-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-section::before,
    .blog-section::after {
        width: 300px;
        height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-card:last-child {
        grid-column: 1 / -1;
        max-width: 60%;
        margin: 0 auto;
    }
    
    .blog-title {
        font-size: 1.2rem;
        min-height: 3.6em;
    }
}