/* Bettilt Gelişmiş Giriş ve Portal Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #06070d;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --primary: #ff6b1a; /* Turuncu / Orange */
    --primary-hover: #e55d0f;
    --primary-glow: rgba(255, 107, 26, 0.4);
    --accent: #2563eb; /* Mavi / Blue */
    --accent-glow: rgba(37, 99, 235, 0.4);
    --warning: #f59e0b; /* Gold */
    --warning-glow: rgba(245, 158, 11, 0.25);
    --success: #10b981;
    --font-sans: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --header-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--header-height);
}

/* Background Glow Effects (Mesh Gradient) */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(140px);
    animation: drift1 30s infinite alternate ease-in-out;
}

.bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    animation: drift2 35s infinite alternate ease-in-out;
}

.bg-glow-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(120px);
    animation: drift1 28s infinite alternate-reverse ease-in-out;
}

@keyframes drift1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 80px) scale(1.1); }
    100% { transform: translate(-60px, 140px) scale(0.95); }
}

@keyframes drift2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-140px, -100px) scale(0.9); }
    100% { transform: translate(80px, -140px) scale(1.15); }
}

/* Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 7, 13, 0.7);
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 18px var(--primary-glow), 0 0 8px var(--primary-glow);
    animation: neonPulseOrange 2.5s infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow), 0 0 20px var(--primary-glow);
    filter: brightness(1.1);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 18px var(--accent-glow), 0 0 8px var(--accent-glow);
    animation: neonPulseBlue 2.5s infinite alternate;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow), 0 0 20px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-secondary:focus {
    outline: none;
}

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

.btn-warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px var(--warning-glow);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--warning-glow);
    filter: brightness(1.05);
}

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

@keyframes neonPulseOrange {
    0% { box-shadow: 0 4px 18px var(--primary-glow), 0 0 8px var(--primary-glow); }
    100% { box-shadow: 0 4px 25px var(--primary-glow), 0 0 30px rgba(255, 107, 26, 0.25); }
}

@keyframes neonPulseBlue {
    0% { box-shadow: 0 4px 18px var(--accent-glow), 0 0 8px var(--accent-glow); }
    100% { box-shadow: 0 4px 25px var(--accent-glow), 0 0 30px rgba(37, 99, 235, 0.25); }
}

/* Layout Grid Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Hero Card (Right Side) */
.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s;
}

.hero-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 7, 13, 0.9) 0%, rgba(6, 7, 13, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.hero-overlay-tag {
    align-self: flex-start;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.hero-overlay-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* Video Background Container */
.video-bg-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
}

#promo-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(6, 7, 13, 0.5) 15%, rgba(6, 7, 13, 0.5) 85%, var(--bg-color) 100%);
    z-index: -1;
}

.video-bg-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Promotions Slider Section */
.section-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.slider-nav {
    display: flex;
    gap: 0.5rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.slider-outer {
    position: relative;
    width: 100%;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-behavior: smooth;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.promo-card {
    min-width: 340px;
    max-width: 360px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.15;
}

.promo-card.indigo::before { background-color: var(--primary); }
.promo-card.teal::before { background-color: var(--accent); }
.promo-card.gold::before { background-color: var(--warning); }

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.promo-top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.promo-card.indigo .promo-tag { background: rgba(99, 102, 241, 0.1); color: #818cf8; }
.promo-card.teal .promo-tag { background: rgba(13, 148, 136, 0.1); color: #2dd4bf; }
.promo-card.gold .promo-tag { background: rgba(245, 158, 11, 0.1); color: #fbbf24; }

.promo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.promo-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.4rem;
}

.promo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    margin-top: 1rem;
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.promo-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Image-based Promo Cards */
.promo-card-img {
    min-width: 360px;
    max-width: 400px;
    height: 220px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promo-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.promo-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.promo-card-img:hover .promo-card-image {
    transform: scale(1.05);
}

.promo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
}

.promo-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Blog List Section */
.blog-card-wide {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.blog-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-thumb-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-btn {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
}

.blog-btn:hover {
    color: #ffffff;
    gap: 0.4rem;
}

/* Blog Page Elements (blog.html) */
.blog-header-section {
    padding: 3rem 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-page-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.blog-page-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Search Bar (input-hover styling guidelines applied) */
.search-container {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 3rem auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.95rem 1.25rem 0.95rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s, background-color 0.2s;
    outline: none;
}

/* Matching the exact input-hover token rules */
.search-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.search-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.03);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.2s;
}

.search-container:focus-within .search-icon {
    color: var(--primary);
}

/* Filter Tags */
.filter-tags {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.filter-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    margin-top: 4rem;
    background: rgba(6, 7, 13, 0.9);
    z-index: 10;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 400px;
}

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

.footer-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-info-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* =========================================
   Pagination Styles
   ========================================= */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.page-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(252, 192, 49, 0.3);
}

/* =========================================
   Single Post View Styles
   ========================================= */
.single-post-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    text-decoration: none;
}

.single-post-header {
    margin-bottom: 2rem;
}

.single-post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.single-post-body h2, .single-post-body h3 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post-body ul, .single-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post-body li {
    margin-bottom: 0.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.25rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }

    .single-post-container {
        padding: 1.5rem;
    }
    .single-post-title {
        font-size: 2rem !important;
    }
}
