/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Top Bar - Son Dakika & Kripto */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 12px;
    overflow: hidden;
    box-shadow: none;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.top-bar-content {
    display: flex;
    align-items: stretch;
}

/* Son Dakika Haberleri - Sol */
.breaking-news-bar {
    flex: 1;
    display: flex;
    align-items: center;
    background: #2c2c2c;
    position: relative;
    gap: 5px;
}

.breaking-label {
    background: #333;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-right: 1px solid #555;
}

.breaking-nav {
    background: #333;
    border: 1px solid #555;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.breaking-nav:hover {
    background: #555;
    transform: scale(1.1);
}

.breaking-nav.prev {
    margin-left: 10px;
}

.breaking-nav.next {
    margin-right: 10px;
}

.breaking-container {
    flex: 1;
    position: relative;
    height: 40px;
    overflow: visible;
}

.breaking-news-item {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    padding: 0 15px;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.breaking-news-item.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.breaking-news-item span.breaking-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-news-item:hover {
    color: #ffd700;
}

/* Breaking News Icon - Heartbeat/Pulse */
.breaking-icon {
    display: inline-block !important;
    width: 24px;
    height: 16px;
    min-width: 24px;
    min-height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-right: 10px;
    z-index: 10;
    background: transparent;
}

.breaking-icon::before,
.breaking-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #ff4444;
    border-radius: 2px;
    animation: heartbeat 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-icon::before {
    left: 3px;
    height: 12px;
    top: 2px;
    animation-delay: 0s;
}

.breaking-icon::after {
    right: 3px;
    height: 16px;
    top: 0;
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    25% {
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    75% {
        transform: scaleY(0.6);
        opacity: 0.8;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Market Ticker - Döviz & Kripto - Sağ Taraf */
.market-ticker {
    display: flex;
    background: #1a1a1a;
    border-left: 1px solid #333;
    flex-shrink: 0;
    overflow-x: auto;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    border-left: 1px solid #333;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s;
}

.market-item:hover {
    background: #2a2a2a;
}

.market-item:first-child {
    border-left: none;
}

.market-item.crypto {
    background: #111;
}

.market-label {
    color: #ccc;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.market-value {
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.market-change {
    font-size: 10px;
}

.market-change.up {
    color: #27ae60;
}

.market-change.down {
    color: #e74c3c;
}

/* Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 2px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Header Widgets - Arama & Hava Durumu */
.header-widgets {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Arama Kutusu */
.search-box {
    position: relative;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-input {
    width: 220px;
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    width: 260px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    color: white;
}

.search-btn:hover {
    background: #333;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hava Durumu Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weather-city {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.weather-temp {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.weather-status {
    font-size: 12px;
    color: #666;
}

.city-select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    outline: none;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.logo:hover {
    opacity: 0.9;
}

.logo:active {
    opacity: 0.8;
}

.logo-image {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Navigation */
.main-nav {
    background: #000;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-top: 1px solid #333;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.nav-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    color: white;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s;
}

.nav-menu li a:hover {
    background: #333;
    color: #fff;
}

.nav-menu li a:hover::after {
    width: 80%;
}

.nav-icon {
    font-size: 14px;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.25);
}

.nav-icon {
    font-size: 12px;
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    margin-left: 15px;
}

.hamburger-menu-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.hamburger-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger-menu-btn.active {
    background: #333;
    border-color: #555;
}

.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.hamburger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
    background: #fff;
    color: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-top: 1px solid #000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mega-menu-dropdown.active {
    max-height: 450px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px 0;
}

.mega-col h4 {
    color: #000;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.mega-col ul li a:hover {
    color: #c1121f;
    padding-left: 10px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* News Slider - 14'lü Slider */
.news-slider-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.news-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    z-index: 15;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

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

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
    pointer-events: none;
    z-index: 1;
}

.slider-overlay h2 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Slider Pagination - Sayfa Numaraları */
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    pointer-events: none;
}

.slider-pagination .page-dot {
    pointer-events: auto;
}

.page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.page-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.page-dot.active {
    background: #000;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-color: transparent;
}

/* Sekmeli Haber Bölümü (1 Büyük + 4 Küçük) */
.tabbed-news-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-tabs {
    display: flex;
    background: white;
    border-bottom: 2px solid #f0f0f0;
    padding: 0 25px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-tab {
    padding: 18px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
}

.news-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #e0e0e0;
}

.news-tab:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.news-tab.active {
    color: #000;
    border-bottom-color: #000;
    background: rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
    padding: 25px;
    animation: fadeInContent 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

.tab-news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}

/* Sol - Büyük Haber */
.tab-main-news {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.tab-main-news:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.tab-main-news a {
    display: block;
    text-decoration: none;
}

.tab-main-news img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.tab-main-news:hover img {
    transform: scale(1.05);
}

.tab-main-content {
    padding: 20px;
}

.tab-main-content h2 {
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 12px;
}

.tab-main-news:hover h2 {
    color: #000;
}

.tab-main-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Sağ - 4 Küçük Haber */
.tab-side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-small-item {
    background: white;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 3px solid transparent;
}

.tab-small-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateX(5px);
    border-left-color: #000;
}

.tab-small-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
}

.tab-small-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.tab-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tab-small-item:hover img {
    transform: scale(1.05);
}

.tab-small-item h3 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.tab-small-item:hover h3 {
    color: #c1121f;
}

/* Kategori Haberleri - 3'lü Grid */
.category-news-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.category-news-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #000;
}

.category-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 3px solid transparent;
    position: relative;
}

.category-header-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

.category-header-bar h2 {
    font-size: 26px;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.view-all-btn {
    background: #000;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-all-btn:hover {
    background: #333;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-news-item {
    background: white;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.grid-news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.grid-news-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.grid-news-item:hover::before {
    transform: scaleX(1);
}

.grid-news-item a {
    display: block;
    text-decoration: none;
}

.grid-news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.grid-news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.grid-news-item:hover .grid-news-image::after {
    opacity: 1;
}

.grid-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-news-image.no-image {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-news-image.no-image span {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
}

.grid-news-item:hover .grid-news-image img {
    transform: scale(1.05);
}

.grid-news-content {
    padding: 18px;
}

.grid-news-content h3 {
    font-size: 17px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.grid-news-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.grid-news-item:hover h3 {
    color: #000;
}

.grid-news-time {
    font-size: 13px;
    color: #666;
}

/* Featured Section */
.featured-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-main {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.featured-card {
    display: block;
    height: 100%;
    position: relative;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.featured-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-overlay p {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.news-time {
    font-size: 13px;
    opacity: 0.8;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0;
}

.news-card {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #eee;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 15px;
    color: white;
}

.news-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* News List Section */
.news-list-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c1121f;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

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

.news-item-link {
    display: flex;
    gap: 20px;
}

.news-item-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-content {
    flex: 1;
}

.news-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.news-item:hover h3 {
    color: #000;
}

.news-item-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rates-widget {
    padding: 15px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.rate-value {
    font-weight: 700;
    font-size: 14px;
    color: #1e8449;
}

.popular-news {
    padding: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.popular-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.popular-item:hover h4 {
    color: #000;
}

.popular-views {
    font-size: 12px;
    color: #999;
}

/* Güncel Konular Widget */
.current-topics {
    padding: 0;
    background: white;
}

.topic-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-item:hover {
    background: #f9f9f9;
    color: #c1121f;
    padding-left: 25px;
}

/* Güncel Konular başlığı için özel stil */
.widget-current-topics .widget-title-current {
    background: transparent;
    color: #999;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}

/* Sponsorlu/Reklam Slider Widget */
.sponsored-widget {
    overflow: visible;
}

.sponsored-slider-wrapper {
    position: relative;
    padding: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Reklam Slider Navigation */
.ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px;
    color: #c1121f;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ad-slider-nav:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.ad-slider-nav.prev {
    left: 10px;
}

.ad-slider-nav.next {
    right: 10px;
}

/* Slider Container */
.sponsored-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.sponsored-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.sponsored-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.sponsored-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.sponsored-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsored-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.sponsored-overlay h4 {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Reklam Pagination */
.ad-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 0 15px 15px;
    flex-wrap: wrap;
}

.ad-dot {
    background: #ddd;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-dot:hover {
    background: #999;
    color: white;
}

.ad-dot.active {
    background: #c1121f;
    color: white;
    transform: scale(1.1);
}

/* News Detail Page */
.news-detail {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #c1121f;
}

.breadcrumb span {
    margin: 0 8px;
}

.news-detail-category a {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-detail-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-detail-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-summary {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #c1121f;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-source {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* Page Content (Hakkımızda, İletişim vb.) */
.page-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid #c1121f;
}

.page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-text p {
    margin-bottom: 20px;
}

.page-text h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.page-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.page-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-text ul li strong {
    color: #000;
}

.page-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-text a:hover {
    color: #333;
    text-decoration: underline;
}

.page-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-style: italic;
    color: #666;
    text-align: center;
}

.news-source a {
    color: #000;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.share-btn.twitter {
    background: #000;
}

.share-btn.facebook {
    background: #333;
}

.share-btn.whatsapp {
    background: #1a1a1a;
}

.share-btn:hover {
    opacity: 0.9;
}

.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-news h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    display: block;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

/* Category Page Slider */
.category-slider-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-slider-header {
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-slider-header h1 {
    font-size: 26px;
    margin: 0;
}

.category-slider-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.category-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.cat-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 28px;
    color: #333;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.cat-slider-nav.prev {
    left: 15px;
}

.cat-slider-nav.next {
    right: 15px;
}

.cat-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.cat-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.cat-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.cat-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.cat-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-slide-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-slide-no-img span {
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
}

.cat-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.cat-slide-overlay h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cat-slide-time {
    font-size: 13px;
    opacity: 0.8;
}

.cat-slider-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.cat-page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.cat-page-dot:hover {
    background: rgba(255,255,255,0.8);
}

.cat-page-dot.active {
    background: #000;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Category Page */
.category-header {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-header h1 {
    font-size: 28px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 700;
}

.category-header p {
    color: #666;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 30px 0;
}

.page-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Sidebar News */
.latest-news-sidebar .sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.latest-news-sidebar .sidebar-news-item:last-child {
    border-bottom: none;
}

.latest-news-sidebar .sidebar-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.latest-news-sidebar .sidebar-news-item h4 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.latest-news-sidebar .sidebar-news-item:hover h4 {
    color: #000;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-logo-fox {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.footer-tagline {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 45px);
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon.facebook { background: #000; }
.social-icon.twitter { background: #000; }
.social-icon.instagram { background: #333; }
.social-icon.linkedin { background: #000; }
.social-icon.youtube { background: #000; }
.social-icon.pinterest { background: #333; }
.social-icon.whatsapp { background: #1a1a1a; }

/* Footer Sections */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-col h4,
.footer-title {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
    font-weight: 500;
}

/* Footer News */
.footer-news {
    list-style: none;
}

.footer-news li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #3a3a3a;
}

.footer-news li:last-child {
    border-bottom: none;
}

.footer-news a {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: block;
}

.footer-news a:hover {
    color: #fff;
    font-weight: 500;
}

/* Etiket Bulutu */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    align-content: flex-start;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #3a3a3a;
    color: #b0b0b0;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #444;
}

.tag:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0;
    color: #888;
}

/* Yukarı Çık Butonu */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-top.show {
    display: flex;
    animation: bounceIn 0.5s;
}

.scroll-top:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(193,18,31,0.4);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-news-layout {
        grid-template-columns: 1fr;
    }
    
    .tab-main-news img {
        height: 300px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
    }
    
    .breaking-news-bar {
        width: 100%;
    }
    
    .breaking-nav {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .market-ticker {
        width: 100%;
        overflow-x: auto;
        border-left: none;
        border-top: 1px solid #444;
        flex-wrap: nowrap;
    }
    
    .market-item {
        min-width: auto;
        font-size: 11px;
    }
    
    .market-label {
        font-size: 10px;
    }
    
    .market-value {
        font-size: 11px;
    }
    
    /* Slider Mobil */
    .news-slider {
        height: 350px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .sponsored-slider-container {
        height: 300px;
    }
    
    .ad-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .ad-slider-nav.prev {
        left: 5px;
    }
    
    .ad-slider-nav.next {
        right: 5px;
    }
    
    .sponsored-overlay {
        padding: 20px 15px;
    }
    
    .sponsored-overlay h4 {
        font-size: 16px;
    }
    
    .ad-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .slider-overlay {
        padding: 20px 15px;
    }
    
    .slider-overlay h2 {
        font-size: 18px;
    }
    
    .slider-pagination {
        bottom: 10px;
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
        justify-content: center;
    }
    
    .page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    /* 3'lü Grid Mobil */
    .news-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-header-bar h2 {
        font-size: 20px;
    }
    
    .grid-news-image {
        height: 180px;
    }
    
    /* Sekmeli Bölüm Mobil */
    .tab-news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-main-news img {
        height: 250px;
    }
    
    .tab-small-item a {
        padding: 8px;
    }
    
    .tab-small-image {
        width: 100px;
        height: 70px;
    }
    
    .tab-small-item h3 {
        font-size: 13px;
    }
    
    /* Kategori Slider Mobil */
    .category-slider {
        height: 350px;
    }
    
    .cat-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .cat-slide-overlay {
        padding: 20px 15px;
    }
    
    .cat-slide-overlay h2 {
        font-size: 18px;
    }
    
    .cat-slider-pagination {
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .cat-page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .logo-image {
        max-height: 45px;
    }
    
    .logo {
        margin-left: 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mega-menu.active {
        max-height: 800px;
    }
    
    .header-widgets {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-input:focus {
        width: 100%;
    }
    
    .weather-widget {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a,
    .nav-menu li button {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li:not(:last-child) a::after {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        height: 350px;
    }
    
    .featured-overlay h2 {
        font-size: 20px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item-link {
        flex-direction: column;
    }
    
    .news-item-image {
        width: 100%;
        height: 200px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-icons {
        grid-template-columns: repeat(7, 45px);
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .news-detail {
        padding: 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        max-height: 35px;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 12px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-menu.active {
        max-height: 1000px;
    }
    
    .featured-main {
        height: 250px;
    }
    
    .featured-overlay {
        padding: 20px;
    }
    
    .featured-overlay h2 {
        font-size: 18px;
    }
    
    .news-card {
        height: 200px;
    }
    
    .news-list-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .sponsored-slider-container {
        height: 250px;
    }
    
    .ad-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .sponsored-overlay {
        padding: 15px 10px;
    }
    
    .sponsored-overlay h4 {
        font-size: 14px;
    }
    
    .ad-dot {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .ad-slider-pagination {
        gap: 3px;
        padding: 0 10px 10px;
    }
    
    .news-item-content h3 {
        font-size: 16px;
    }
    
    .news-detail-title {
        font-size: 20px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
}

/ *   S i y a h - B e y a z   R e n k   P a l e t i   v e   L a y o u t   G � � n c e l l e m e l e r i   * / 
 
 
 
 / *   T o p   B a r   -   S i y a h   * / 
 
 . t o p - b a r   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   # f f f ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b o x - s h a d o w :   n o n e ; 
 
 } 
 
 
 
 . b r e a k i n g - l a b e l   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   1 0 p x   2 0 p x ; 
 
         f o n t - w e i g h t :   b o l d ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   # 5 5 5 ; 
 
 } 
 
 
 
 . b r e a k i n g - n a v   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         b o r d e r :   1 p x   s o l i d   # 5 5 5 ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . b r e a k i n g - n a v : h o v e r   { 
 
         b a c k g r o u n d :   # 5 5 5 ; 
 
 } 
 
 
 
 . m a r k e t - t i c k e r   { 
 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
 
         b o r d e r - l e f t :   1 p x   s o l i d   # 3 3 3 ; 
 
 } 
 
 
 
 . m a r k e t - i t e m   { 
 
         b o r d e r - l e f t :   1 p x   s o l i d   # 3 3 3 ; 
 
 } 
 
 
 
 . m a r k e t - i t e m : h o v e r   { 
 
         b a c k g r o u n d :   # 2 a 2 a 2 a ; 
 
 } 
 
 
 
 . m a r k e t - i t e m . c r y p t o   { 
 
         b a c k g r o u n d :   # 1 1 1 ; 
 
 } 
 
 
 
 / *   H e a d e r   -   B e y a z   * / 
 
 . m a i n - h e a d e r   { 
 
         b a c k g r o u n d :   # f f f ; 
 
         p a d d i n g :   1 5 p x   0 ; 
 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # 0 0 0 ; 
 
         p o s i t i o n :   s t i c k y ; 
 
         t o p :   0 ; 
 
         z - i n d e x :   1 0 0 0 ; 
 
 } 
 
 
 
 . l o g o   h 1   { 
 
         f o n t - s i z e :   3 2 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         c o l o r :   # 0 0 0 ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
 } 
 
 
 
 . s e a r c h - i n p u t : f o c u s   { 
 
         o u t l i n e :   n o n e ; 
 
         b o r d e r - c o l o r :   # 0 0 0 ; 
 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 
         w i d t h :   2 6 0 p x ; 
 
 } 
 
 
 
 . s e a r c h - b t n   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . s e a r c h - b t n : h o v e r   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % )   s c a l e ( 1 . 1 ) ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
 } 
 
 
 
 . w e a t h e r - t e m p   { 
 
         f o n t - s i z e :   1 5 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 / *   N a v i g a t i o n   -   S i y a h   * / 
 
 . m a i n - n a v   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   1 0 0 ; 
 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # 3 3 3 ; 
 
 } 
 
 
 
 . n a v - m e n u   l i   a   { 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . n a v - m e n u   l i   a : h o v e r   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         c o l o r :   # f f f ; 
 
 } 
 
 
 
 . n a v - m e n u   l i   a : : a f t e r   { 
 
         b a c k g r o u n d :   w h i t e ; 
 
 } 
 
 
 
 . n a v - m e n u   l i : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ; 
 
 } 
 
 
 
 . h a m b u r g e r - m e n u - b t n . a c t i v e   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         b o r d e r - c o l o r :   # 5 5 5 ; 
 
 } 
 
 
 
 / *   M e g a   M e n u   -   B e y a z   * / 
 
 . m e g a - m e n u - d r o p d o w n   { 
 
         b a c k g r o u n d :   # f f f ; 
 
         c o l o r :   # 1 a 1 a 1 a ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # 0 0 0 ; 
 
         b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ; 
 
 } 
 
 
 
 . m e g a - c o l   h 4   { 
 
         c o l o r :   # 0 0 0 ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # 0 0 0 ; 
 
 } 
 
 
 
 . m e g a - c o l   u l   l i   a   { 
 
         c o l o r :   # 5 5 5 ; 
 
 } 
 
 
 
 . m e g a - c o l   u l   l i   a : h o v e r   { 
 
         c o l o r :   # 0 0 0 ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
 } 
 
 
 
 / *   G � � n d e m   K a r t l a r � �   -   4 ' l � �   G r i d   * / 
 
 . g u n d e m - c a r d s - s e c t i o n   { 
 
         m a r g i n - b o t t o m :   3 0 p x ; 
 
 } 
 
 
 
 . g u n d e m - c a r d s - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
 
         g a p :   2 0 p x ; 
 
 } 
 
 
 
 . g u n d e m - c a r d   { 
 
         b a c k g r o u n d :   w h i t e ; 
 
         b o r d e r :   1 p x   s o l i d   # e 0 e 0 e 0 ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
 } 
 
 
 
 . g u n d e m - c a r d : h o v e r   { 
 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 
         b o r d e r - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . g u n d e m - c a r d   a   { 
 
         d i s p l a y :   b l o c k ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 8 0 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b a c k g r o u n d :   # f 5 f 5 f 5 ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s ; 
 
 } 
 
 
 
 . g u n d e m - c a r d : h o v e r   . g u n d e m - c a r d - i m a g e   i m g   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e . n o - i m a g e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e . n o - i m a g e   s p a n   { 
 
         f o n t - s i z e :   4 8 p x ; 
 
         o p a c i t y :   0 . 3 ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - c o n t e n t   { 
 
         p a d d i n g :   1 5 p x ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - c o n t e n t   h 3   { 
 
         f o n t - s i z e :   1 5 p x ; 
 
         l i n e - h e i g h t :   1 . 4 ; 
 
         c o l o r :   # 1 a 1 a 1 a ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t r a n s i t i o n :   c o l o r   0 . 3 s ; 
 
 } 
 
 
 
 . g u n d e m - c a r d : h o v e r   h 3   { 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - t i m e   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   # 6 6 6 ; 
 
 } 
 
 
 
 / *   N e w s   G r i d   -   S i y a h - B e y a z   * / 
 
 . n e w s - g r i d - 3   { 
 
         g a p :   2 5 p x ; 
 
 } 
 
 
 
 . g r i d - n e w s - i t e m   { 
 
         b a c k g r o u n d :   w h i t e ; 
 
         b o r d e r :   1 p x   s o l i d   # e 0 e 0 e 0 ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
 } 
 
 
 
 . g r i d - n e w s - i t e m : : b e f o r e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         t r a n s f o r m :   s c a l e X ( 0 ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s ; 
 
 } 
 
 
 
 . g r i d - n e w s - i t e m : h o v e r   { 
 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 
         b o r d e r - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . g r i d - n e w s - i t e m : h o v e r : : b e f o r e   { 
 
         t r a n s f o r m :   s c a l e X ( 1 ) ; 
 
 } 
 
 
 
 . g r i d - n e w s - i m a g e . n o - i m a g e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
 } 
 
 
 
 . g r i d - n e w s - i t e m : h o v e r   h 3   { 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 / *   T a b ' l e r   * / 
 
 . n e w s - t a b s   { 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # e 0 e 0 e 0 ; 
 
         b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . n e w s - t a b : h o v e r   { 
 
         c o l o r :   # 0 0 0 ; 
 
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
 } 
 
 
 
 . n e w s - t a b . a c t i v e   { 
 
         c o l o r :   # 0 0 0 ; 
 
         b o r d e r - b o t t o m - c o l o r :   # 0 0 0 ; 
 
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
 } 
 
 
 
 / *   C a t e g o r y   H e a d e r   * / 
 
 . c a t e g o r y - h e a d e r - b a r : : a f t e r   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
 } 
 
 
 
 . c a t e g o r y - h e a d e r - b a r   h 2   { 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . v i e w - a l l - b t n   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 
 } 
 
 
 
 . v i e w - a l l - b t n : h o v e r   { 
 
         b a c k g r o u n d :   # 3 3 3 ; 
 
         b o x - s h a d o w :   0   6 p x   1 8 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
 } 
 
 
 
 / *   S l i d e r   * / 
 
 . n e w s - s l i d e r - s e c t i o n   { 
 
         b o r d e r :   1 p x   s o l i d   # e 0 e 0 e 0 ; 
 
         b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
 } 
 
 
 
 . p a g e - d o t . a c t i v e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
 } 
 
 
 
 / *   T a b   M a i n   N e w s   * / 
 
 . t a b - m a i n - n e w s : : b e f o r e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
 } 
 
 
 
 . t a b - m a i n - n e w s : h o v e r   h 2   { 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . t a b - s m a l l - i t e m   { 
 
         b o r d e r - l e f t :   3 p x   s o l i d   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . t a b - s m a l l - i t e m : h o v e r   { 
 
         b o r d e r - l e f t - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 / *   W i d g e t   T i t l e   * / 
 
 . w i d g e t - t i t l e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 
 } 
 
 
 
 / *   P a g i n a t i o n   * / 
 
 . p a g e - b t n : h o v e r , 
 
 . p a g e - b t n . a c t i v e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
 } 
 
 
 
 / *   C a t e g o r y   H e a d e r   * / 
 
 . c a t e g o r y - h e a d e r   h 1   { 
 
         f o n t - s i z e :   2 8 p x ; 
 
         c o l o r :   # 0 0 0 ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 / *   C a t   S l i d e   N o   I m a g e   * / 
 
 . c a t - s l i d e - n o - i m g   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
 } 
 
 
 
 . c a t - p a g e - d o t . a c t i v e   { 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
 } 
 
 
 
 / *   R e s p o n s i v e   * / 
 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
 
         . g u n d e m - c a r d s - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . g u n d e m - c a r d s - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 } 
 
 
 
 / *   G � � n d e m   K a r t l a r � �   D � � z e l t m e l e r i   -   K � � � � � � k   K o m p a k t   * / 
 
 . g u n d e m - c a r d s - g r i d   { 
 
         d i s p l a y :   g r i d   ! i m p o r t a n t ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r )   ! i m p o r t a n t ; 
 
         g a p :   1 5 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d   { 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   6 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d   a   { 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e   { 
 
         h e i g h t :   1 2 0 p x   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - c o n t e n t   { 
 
         p a d d i n g :   1 2 p x   ! i m p o r t a n t ; 
 
         f l e x :   1   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - c o n t e n t   h 3   { 
 
         f o n t - s i z e :   1 4 p x   ! i m p o r t a n t ; 
 
         m a r g i n - b o t t o m :   6 p x   ! i m p o r t a n t ; 
 
         d i s p l a y :   - w e b k i t - b o x   ! i m p o r t a n t ; 
 
         - w e b k i t - l i n e - c l a m p :   2   ! i m p o r t a n t ; 
 
         - w e b k i t - b o x - o r i e n t :   v e r t i c a l   ! i m p o r t a n t ; 
 
         o v e r f l o w :   h i d d e n   ! i m p o r t a n t ; 
 
         f l e x :   1   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - t i m e   { 
 
         f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
         m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . g u n d e m - c a r d - i m a g e . n o - i m a g e   s p a n   { 
 
         f o n t - s i z e :   3 2 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 