/* Premium & Editorial Journalist Web Site Style Sheet - Nail Azbay */
:root {
    /* Color Palette - Light Mode Default */
    --bg-color: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: rgba(226, 232, 240, 0.8);
    --primary-color: #d32f2f; /* Deep Editorial Red */
    --primary-hover: #b71c1c;
    --primary-gradient: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    --primary-light: rgba(211, 47, 47, 0.06);
    --primary-glow: rgba(211, 47, 47, 0.15);
    --shadow-color: rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px var(--shadow-color);
    --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -5px var(--shadow-color);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 8px 20px -8px var(--shadow-color);
    --dot-color: rgba(226, 232, 240, 0.6);
}

/* Dark Mode Color Palette overrides */
[data-theme="dark"] {
    --bg-color: #090d16;
    --card-bg: rgba(17, 24, 39, 0.85);
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(31, 41, 55, 0.7);
    --primary-color: #ef4444; /* Brighter red for accessibility */
    --primary-hover: #dc2626;
    --primary-gradient: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    --primary-light: rgba(239, 68, 68, 0.09);
    --primary-glow: rgba(239, 68, 68, 0.25);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --dot-color: rgba(31, 41, 55, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                color 0.2s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    /* Premium Dot Matrix Background texture resembling newspaper paper */
    background-image: radial-gradient(var(--dot-color) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography styles for Editorial look */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navbar (Glassmorphic) */
.site-header {
    background-color: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px -5px var(--shadow-color);
    backdrop-filter: blur(16px) saturate(180%);
}

/* Red accent strip at the very top of page */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.15rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand span {
    color: var(--primary-color);
    font-size: 2.2rem;
    line-height: 0;
    display: inline-block;
    animation: pulseRed 2s infinite ease-in-out;
}

@keyframes pulseRed {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 99px;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    background-color: var(--card-bg);
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--primary-light);
    transform: rotate(15deg);
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Footer Section */
.site-footer {
    background-color: #0f172a; /* Deep dark blue-black footer for ultimate premium contrast */
    color: #f1f5f9;
    padding: 5rem 0 2.5rem 0;
    margin-top: 6rem;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-about h3 {
    font-size: 1.65rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-about h3 span {
    color: var(--primary-color);
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background-color: rgba(255, 255, 255, 0.02);
}

.social-link:hover {
    color: #ffffff;
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3);
}

.footer-menu-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 99px;
}

.footer-menu-list {
    list-style: none;
}

.footer-menu-list li {
    margin-bottom: 0.75rem;
}

.footer-menu-list a {
    font-size: 0.9rem;
    color: #94a3b8;
    display: inline-block;
}

.footer-menu-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Home Headline / Featured Post Card (Highly Styled) */
.hero-section {
    padding: 4rem 0 2rem 0;
}

.featured-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(16px) saturate(180%);
}

.featured-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.featured-img-wrapper {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.featured-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 60%, var(--shadow-color) 100%);
    z-index: 1;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.featured-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.category-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.725rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.featured-title {
    font-size: 2.35rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-spot {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.post-meta i {
    color: var(--primary-color);
}

/* Home Section Layouts */
.section-title {
    font-size: 1.65rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 99px;
}

.home-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 3.5rem;
    margin-top: 2rem;
}

/* Post Cards Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(16px) saturate(180%);
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(211, 47, 47, 0.25);
    box-shadow: 0 15px 35px -5px var(--primary-glow), var(--shadow-md);
}

.post-card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.post-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-title {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    font-weight: 800;
    line-height: 1.3;
}

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

.post-card-spot {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
    flex: 1;
}

/* Sidebar Widgets (Stunning Borders and Gradients) */
.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px) saturate(180%);
}

/* Thin red accent top bar on sidebar widgets */
.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.sidebar-widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}
.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.bio-widget-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem auto;
    border: 4px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
}

.bio-widget-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-widget-name {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.bio-widget-title {
    text-align: center;
    font-size: 0.775rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.bio-widget-text {
    color: var(--text-muted);
    font-size: 0.925rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-readmore:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-readmore i {
    transition: transform 0.2s ease;
}

.btn-readmore:hover i {
    transform: translateX(3px);
}

/* Full Article Page Layout */
.article-header {
    padding: 4rem 0 2.5rem 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2.5rem;
}

.article-category {
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.article-meta {
    margin-bottom: 0;
}

.article-cover-wrapper {
    height: 520px;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

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

.article-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.article-spot {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1.75rem;
    font-style: italic;
}

/* Body typography styled elegantly for high-level reading */
.article-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-color);
}

.article-body p {
    margin-bottom: 1.75rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

/* Elegant editorial styling for headings within body */
.article-body h2, .article-body h3 {
    margin: 2rem 0 1rem 0;
    font-size: 1.65rem;
    font-weight: 800;
}

/* Comment Form & Messages Form Styling (Refined Card structure) */
.comments-section {
    margin-top: 5rem;
    border-top: 2px solid var(--border-color);
    padding-top: 4rem;
}

.comments-title {
    font-size: 1.65rem;
    margin-bottom: 2.5rem;
}

.comment-list {
    margin-bottom: 4rem;
}

.comment-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px) saturate(180%);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.comment-author {
    font-size: 1rem;
    font-weight: 800;
}

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

.comment-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-color);
}

.comment-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(16px) saturate(180%);
}

.comment-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 1.75rem 1.75rem 0 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-color);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.875rem 1.15rem;
    border: 1px solid var(--border-color);
    border-radius: 0.625rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Hidden Honeypot spam field */
.hp-field {
    display: none !important;
    visibility: hidden !important;
}

/* Biography / About Page Layout */
.about-header {
    text-align: center;
    padding: 5rem 0 3rem 0;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.about-header p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2.1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: start;
}

.about-profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(16px) saturate(180%);
}

.about-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 1.75rem 1.75rem 0 0;
}

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.75rem auto;
    border: 5px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.about-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-profile-card h2 {
    font-size: 1.85rem;
    margin-bottom: 0.35rem;
}

.about-profile-card p {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.about-bio-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    font-size: 1.125rem;
    line-height: 1.95;
    backdrop-filter: blur(16px) saturate(180%);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.75rem;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    backdrop-filter: blur(16px) saturate(180%);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 1.75rem 1.75rem 0 0;
}

.contact-info-title {
    font-size: 1.65rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-method-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.05);
}

.contact-method-text h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.contact-method-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Mobile responsive menu overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
    padding: 2.5rem 2rem;
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px) saturate(180%);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.15rem;
    display: block;
    text-align: center;
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-img-wrapper {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 2.5rem;
    }
    
    .home-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle-btn {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-bio-content {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 2.25rem;
    }
    
    .article-cover-wrapper {
        height: 320px;
        border-radius: 1.25rem;
    }
    
    .comment-form-container {
        padding: 2rem;
    }
}

/* Top Bar Strip styles */
.top-bar-strip {
    background-color: #0f172a; /* Deep dark blue-black for contrast */
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.top-bar-weather {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #e2e8f0;
}

.top-bar-weather i {
    color: var(--primary-color);
}

/* Header Search Form styles */
.search-form {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--bg-color);
    padding: 0.3rem 0.6rem;
    margin-right: 0.5rem;
    width: 160px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
    width: 220px; /* Expand on focus */
}

.search-input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.75rem;
    color: var(--text-color);
    font-family: inherit;
    width: 100%;
    padding: 0.2rem 0;
}

.search-btn {
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-btn:hover {
    color: var(--primary-color);
}

/* Video Card Hover styles */
.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(211, 47, 47, 0.25);
    box-shadow: 0 15px 35px -5px var(--primary-glow), var(--shadow-md);
}

.video-card:hover .video-thumbnail-container img {
    transform: scale(1.06);
    opacity: 0.95;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

@media (max-width: 480px) {
    .search-form {
        width: 90px;
    }
    .search-form:focus-within {
        width: 150px;
    }
    .top-bar-flex {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

/* Breaking News Ticker styles */
.ticker-bar-strip {
    border-bottom: 1px solid var(--border-color);
    padding: 0.45rem 0;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
}

.ticker-bar-strip.ticker-gundem-bg {
    background-color: #e0f2fe; /* Light Mode: Soft Sky Blue */
    border-bottom-color: rgba(2, 132, 199, 0.2);
}

[data-theme="dark"] .ticker-bar-strip.ticker-gundem-bg {
    background-color: rgba(3, 105, 161, 0.12); /* Dark Mode: Soft Dark Blue */
    border-bottom-color: rgba(3, 105, 161, 0.2);
}

.ticker-bar-strip.ticker-sondakika-bg {
    background-color: var(--primary-light); /* Soft Editorial Red */
    border-bottom-color: var(--border-color);
}

.ticker-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.ticker-toggle-btn {
    border: none;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

[data-theme="dark"] .ticker-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
}

.ticker-toggle-btn.active-gundem {
    background: #0284c7 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3);
}

.ticker-toggle-btn.active-sondakika {
    background: #d32f2f !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(211, 47, 47, 0.3);
}

.ticker-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.ticker-track {
    display: inline-flex;
    animation: marqueeScroll 25s linear infinite;
    gap: 2.5rem;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-item:hover {
    color: var(--primary-color);
}

.ticker-dot {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Trending Sidebar list styling */
.trending-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--border-color);
}

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

.trending-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    min-width: 25px;
}

.trending-text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: inherit;
}

.trending-text h5 a:hover {
    color: var(--primary-color);
}

