@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-bg: #e3000f;
    --nav-bg: #222222;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.public-shell {
    max-width: 1520px !important;
}

.top-header {
    background-color: var(--primary-bg);
    padding: 10px 0;
}

.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: Arial Black, Arial, sans-serif;
}

.logo img {
    max-height: 34px;
    width: auto;
}

.user-area .btn {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
}

.main-menu-container {
    background-color: var(--nav-bg);
}

.main-menu {
    overflow-x: auto;
    white-space: nowrap;
}

.main-menu::-webkit-scrollbar {
    height: 0;
}

.main-menu li a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 15px;
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
}

.main-menu li a:hover {
    color: #e3000f;
}

.menu-link-hot {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ef233c 0%, #d90429 100%);
    border-radius: 8px;
    margin: 6px 4px;
    padding: 8px 12px !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.side-menu a.menu-link-hot {
    color: #ffffff !important;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ef233c 0%, #d90429 100%);
}

.menu-link-blink {
    animation: menuPulse 1.2s ease-in-out infinite;
}

@keyframes menuPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.35);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(239, 35, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 35, 60, 0);
    }
}

.ticker-wrapper {
    background: #f8fafe;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3;
}

.marquee-container {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    min-width: 100%;
}

.currency-item {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.currency-item.up {
    border-color: rgba(2, 182, 53, 0.35);
    background-color: rgba(2, 182, 53, 0.08);
}

.currency-item.down {
    border-color: rgba(215, 19, 19, 0.35);
    background-color: rgba(215, 19, 19, 0.08);
}

.currency-item.stable {
    border-color: rgba(107, 114, 128, 0.35);
    background-color: rgba(107, 114, 128, 0.08);
}

.currency-item-name {
    color: #111827;
    margin-right: 4px;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.currency-item-value {
    margin-right: 4px;
    font-size: 13px;
}

.currency-item-trend {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    margin-left: 4px;
}

.trend-icon {
    font-size: 10px;
}

.trend-label {
    font-size: 10px;
    font-weight: 800;
    margin-left: 2px;
}

.currency-item.up .trend-icon,
.currency-item.up .currency-item-range,
.currency-item.up .trend-label,
.mini-trend.up {
    color: #0a8f2f;
}

.currency-item.down .trend-icon,
.currency-item.down .currency-item-range,
.currency-item.down .trend-label,
.mini-trend.down {
    color: #b91c1c;
}

.currency-item.stable .trend-icon,
.currency-item.stable .currency-item-range,
.currency-item.stable .trend-label,
.mini-trend.stable {
    color: #4b5563;
}

.mini-trend {
    font-size: 10px;
    font-weight: 700;
}

.side-menu a {
    text-decoration: none;
    color: #333333;
    display: block;
    padding: 8px 0;
}

.side-menu a:hover {
    color: var(--primary-bg);
}

.social-page-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    color: #444444;
    font-weight: 700;
}

.social-page-button:hover {
    background-color: #f1f1f1;
}

.quick-access a {
    text-decoration: none;
    color: #333333;
    width: 50%;
    padding: 15px;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.quick-access a:last-child {
    border-right: 0;
}

.offcanvas {
    max-width: 360px;
}

.offcanvas-header {
    background-color: var(--nav-bg);
}

.ad-slot {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    position: relative;
    overflow: hidden;
}

.ad-slot-label {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.ad-slot-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    text-align: center;
    padding: 16px;
    gap: 4px;
}

.ad-slot-body strong {
    color: #111827;
    font-size: 14px;
}

.ad-slot-body span {
    color: #4b5563;
    font-size: 12px;
}

.ad-slot-cta {
    color: #e3000f;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ad-slot-cta:hover {
    color: #b7000c;
    text-decoration: underline;
}

.ad-slot-billboard {
    min-height: 110px;
}

.ad-slot-horizontal {
    min-height: 86px;
}

.ad-slot-sidebar {
    min-height: 250px;
}

.ad-slot-rectangle {
    min-height: 200px;
}

.hero-carousel-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #18181a;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.16);
}

.hero-carousel-inner .carousel-item {
    position: relative;
    background: #111111;
}

.hero-carousel-inner .carousel-item::after {
    content: "";
    display: block;
    padding-bottom: 53%;
}

.hero-carousel-inner .carousel-item.no-image {
    background: linear-gradient(135deg, #16181d 0%, #2b1a1e 56%, #111827 100%);
}

.hero-carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.carousel-item.active img {
    transform: scale(1.04);
}

.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 12%, rgba(10, 10, 10, 0.6) 52%, transparent 100%);
    padding: 80px 28px 24px;
    color: #ffffff;
    z-index: 5;
}

.news-badge {
    background-color: #e3000f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-caption h2 {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    line-height: 1.32;
    margin: 0;
}

.carousel-full-link {
    position: absolute;
    inset: 0;
    z-index: 8;
    cursor: pointer;
}

.slider-pagination-bar {
    display: flex;
    background: #26272b;
    user-select: none;
}

.slider-pagination-item {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 800;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.slider-pagination-item:last-child {
    border-right: 0;
}

.slider-pagination-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.slider-pagination-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.slider-pagination-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e3000f;
    box-shadow: 0 2px 8px rgba(227, 0, 15, 0.7);
}

.slider-next-btn {
    max-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-news-card {
    border-radius: 8px;
    border: 1px solid #ebeef1;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: 0.28s ease;
}

.mini-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.mini-img-wrap {
    overflow: hidden;
    position: relative;
    background: #e7eaef;
}

.mini-img-wrap::after {
    content: "";
    display: block;
    padding-bottom: 58%;
}

.mini-img-wrap.no-image {
    background: linear-gradient(135deg, #ced4df 0%, #e8ebf2 100%);
}

.mini-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.mini-news-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-news-title {
    color: #212529;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-main-card {
    min-height: 440px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #2b1a1e 52%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    border: 1px solid #263244;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22);
}

.hero-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 25, 0.12) 0%, rgba(10, 15, 25, 0.84) 68%);
}

.hero-main-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #ffffff;
}

.hero-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 99px;
    background-color: rgba(255, 255, 255, 0.14);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero-title a {
    color: #ffffff;
    text-decoration: none;
}

.hero-title a:hover {
    color: #ffe0e0;
}

.hero-summary {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-side-stack {
    display: grid;
    gap: 10px;
}

.hero-compact-card,
.hero-side-card {
    background-color: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 12px;
    padding: 16px;
    min-height: 148px;
}

.hero-side-category {
    font-size: 11px;
    font-weight: 800;
    color: #e3000f;
    margin-bottom: 6px;
}

.hero-compact-card h2,
.hero-side-card h2 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 6px;
    font-weight: 700;
}

.hero-compact-card h2 a,
.hero-side-card h2 a {
    color: #111827;
    text-decoration: none;
}

.hero-compact-card p,
.hero-side-card p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.3px;
}

.section-link {
    text-decoration: none;
    color: #e3000f;
    font-weight: 700;
    font-size: 13px;
}

.home-main-row {
    align-items: flex-start;
}

.osb-mini-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
    padding: 14px;
}

.osb-mini-section-wide {
    width: 100%;
}

.osb-track-nav {
    width: 30px;
    height: 30px;
    border: 1px solid #d5dceb;
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.osb-track-nav:hover {
    border-color: #f3b8c0;
    color: #e3000f;
}

.osb-mini-track-wrap {
    overflow: hidden;
}

.osb-mini-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.osb-mini-track::-webkit-scrollbar {
    height: 8px;
}

.osb-mini-track::-webkit-scrollbar-thumb {
    background: #d8dfea;
    border-radius: 999px;
}

.osb-mini-card {
    flex: 0 0 228px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 10px;
    scroll-snap-align: start;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.osb-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.osb-mini-image {
    display: block;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 108px;
    background: linear-gradient(140deg, #1f2937 0%, #374151 100%);
}

.osb-mini-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.osb-mini-tag {
    position: absolute;
    left: 8px;
    bottom: 8px;
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    background: #ef233c;
    border-radius: 999px;
    padding: 4px 7px;
}

.osb-mini-card h4 {
    margin: 9px 0 7px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    min-height: 35px;
}

.osb-mini-card h4 a {
    color: #111827;
    text-decoration: none;
}

.osb-mini-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
}

.day-highlight-widget {
    padding: 14px;
}

.day-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.day-highlight-image {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    min-height: 145px;
    background: linear-gradient(140deg, #1f2937 0%, #374151 100%);
}

.day-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-highlight-content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.day-highlight-content h4 a {
    color: #111827;
    text-decoration: none;
}

.day-highlight-content p {
    margin: 8px 0 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

.day-highlight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 700;
}

.day-highlight-meta a {
    color: #e3000f;
    text-decoration: none;
}

.latest-pro-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
    padding: 14px;
}

.latest-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.latest-pro-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.latest-pro-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.latest-pro-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-pro-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

.latest-pro-body {
    padding: 10px;
}

.latest-pro-body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.latest-pro-body h3 a {
    color: #111827;
    text-decoration: none;
}

.latest-pro-body p {
    margin: 0 0 10px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
}

.latest-pro-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 700;
}

.latest-pro-meta a {
    color: #e3000f;
    text-decoration: none;
}

.turkey-league-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
    padding: 14px;
}

.turkey-league-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.turkey-league-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 12px;
}

.turkey-league-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
}

.turkey-league-featured-news {
    grid-column: span 2;
    border-color: #f2c6cd;
    background: linear-gradient(135deg, #fff7f8 0%, #ffffff 55%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(227, 0, 15, 0.07);
}

.turkey-featured-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.turkey-featured-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.turkey-featured-head small {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.turkey-league-featured-news h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 900;
}

.turkey-league-featured-news h3 a {
    color: #111827;
    text-decoration: none;
}

.turkey-league-featured-news h3 a:hover {
    color: #e3000f;
}

.turkey-league-featured-news p {
    margin: 0 0 10px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
}

.turkey-featured-link {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #f3c3ca;
    background: #fff;
    color: #c1121f;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
}

.turkey-featured-link:hover {
    border-color: #e3000f;
    color: #e3000f;
}

.turkey-league-teams {
    display: grid;
    gap: 8px;
}

.turkey-league-team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.turkey-league-teams strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.turkey-league-teams strong a {
    color: #111827;
    text-decoration: none;
}

.turkey-league-teams strong a:hover {
    color: #e3000f;
}

.turkey-league-teams small {
    font-size: 10px;
    color: #6b7280;
    font-weight: 700;
}

.team-logo-wrap {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
}

.team-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.turkey-league-score {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.turkey-league-score span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 9px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 19px;
    font-weight: 900;
}

.turkey-league-meta {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.sports-state {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 800;
}

.sports-state-live {
    background: #fee2e2;
    color: #b91c1c;
}

.sports-state-finished {
    background: #e2e8f0;
    color: #334155;
}

.sports-state-scheduled {
    background: #dcfce7;
    color: #15803d;
}

.turkey-league-meta small {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.turkey-standings-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
}

.turkey-standings-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.turkey-standings-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.turkey-standings-head small {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

.turkey-standings-list,
.sports-standings-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.turkey-standings-list li,
.sports-standings-list li {
    display: grid;
    grid-template-columns: 26px 22px 1fr 30px 34px;
    align-items: center;
    gap: 7px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fbfdff;
    padding: 6px;
}

.stand-pos {
    font-size: 11px;
    font-weight: 800;
    color: #334155;
    text-align: center;
}

.stand-team {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.stand-team:hover {
    color: #e3000f;
}

.stand-played {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-align: center;
}

.stand-points {
    font-size: 12px;
    color: #111827;
    font-weight: 900;
    text-align: right;
}

.category-rank-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8fd 100%);
    padding: 14px;
}

.category-rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.category-rank-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.category-rank-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: var(--cat-accent, #e3000f);
}

.category-rank-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
}

.category-rank-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-rank-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cat-accent, #e3000f) 14%, white);
    color: #1e293b;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.category-rank-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #111827;
}

.category-rank-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--cat-accent, #e3000f);
    text-decoration: none;
    white-space: nowrap;
}

.category-rank-teaser {
    margin: 0 0 11px;
    font-size: 12px;
    line-height: 1.55;
    color: #64748b;
}

.category-rank-lead {
    border: 1px solid #ecf1f8;
    border-radius: 11px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 10px;
    margin-bottom: 10px;
}

.category-rank-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--cat-accent, #e3000f);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.category-rank-lead h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.category-rank-lead h4 a {
    color: #0f172a;
    text-decoration: none;
}

.category-rank-lead small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.category-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-rank-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: stretch;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 7px;
}

.category-rank-no {
    width: 34px;
    height: 100%;
    min-height: 42px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--cat-accent, #e3000f) 12%, white);
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-rank-content a {
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.category-rank-content small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.category-rank-content a:hover,
.category-rank-lead h4 a:hover {
    color: var(--cat-accent, #e3000f);
}

.rental-market-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8fc 100%);
    padding: 14px;
}

.rental-market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rental-market-card {
    border: 1px solid #e5ebf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rental-market-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.rental-market-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-market-body {
    padding: 10px;
}

.rental-market-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rental-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
}

.rental-area {
    font-size: 11px;
    color: #475569;
    font-weight: 700;
}

.rental-market-body h3 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.rental-market-body h3 a {
    color: #111827;
    text-decoration: none;
}

.rental-market-body p {
    margin: 0 0 10px;
    font-size: 12px;
    color: #64748b;
}

.rental-market-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.rental-market-footer strong {
    font-size: 14px;
    color: #111827;
}

.rental-market-footer a {
    color: #e3000f;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.osb-job-board-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
}

.osb-job-board {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9eef6;
    border-radius: 12px;
    overflow: hidden;
}

.osb-job-row {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 0.45fr;
    gap: 10px;
    align-items: center;
    padding: 14px 12px;
    text-decoration: none;
    color: #111827;
    background: #ffffff;
    border-bottom: 1px solid #edf1f7;
}

.osb-job-row:last-child {
    border-bottom: 0;
}

.osb-job-row:hover {
    background: #f8fafc;
}

.osb-job-main h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.osb-job-main p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.osb-job-tags span {
    display: inline-flex;
    border: 1px solid #dbe3f0;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    background: #f8fafc;
}

.osb-job-salary {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.osb-job-date {
    font-size: 12px;
    color: #64748b;
    text-align: right;
    font-weight: 700;
}

.osb-bulletins-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f8fd 100%);
    padding: 14px;
}

.osb-bulletins-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.osb-bulletin-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.osb-bulletin-board-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.osb-bulletin-board-card .osb-bulletin-top strong {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.osb-bulletin-list-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.osb-bulletin-line {
    border: 1px solid #edf2f7;
    border-radius: 9px;
    background: #fbfdff;
    text-decoration: none;
    padding: 7px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.osb-bulletin-line span {
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.osb-bulletin-line small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.osb-bulletin-line:hover span {
    color: #be123c;
}

.sanayi-bulletin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.osb-bulletin-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.osb-bulletin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.osb-bulletin-city {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #fecdd3;
    background: #fff1f2;
    color: #be123c;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.osb-bulletin-top small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.osb-bulletin-card h3 {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.osb-bulletin-card p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.osb-bulletin-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.osb-bulletin-footer strong {
    color: #1f2937;
    font-size: 12px;
    font-weight: 800;
}

.osb-bulletin-footer a {
    color: #e3000f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.osb-bulletin-footer a:hover {
    text-decoration: underline;
}

.industrial-hot-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fcfdff 0%, #f5f8fd 100%);
    padding: 14px;
}

.industrial-hot-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 12px;
}

.hot-dev-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.hot-dev-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 900;
    color: #111827;
}

.hot-dev-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hot-dev-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: stretch;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 7px;
}

.hot-dev-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 900;
    min-height: 42px;
}

.hot-dev-content a {
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.hot-dev-content a:hover {
    color: #e3000f;
}

.hot-dev-content small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.sanayi-special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sanayi-special-card {
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.sanayi-special-card:hover {
    border-color: #f3c3ca;
    background: #fff8f9;
}

.sanayi-special-cat {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    margin-bottom: 7px;
}

.sanayi-special-card h4 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 14px;
    line-height: 1.34;
    font-weight: 800;
}

.sanayi-special-card p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.sports-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sports-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 16px;
    color: #ffffff;
}

.sports-hero h1 {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 900;
}

.sports-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.sports-updated {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.sports-news-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 12px;
}

.sports-hot-card,
.sports-stream-card,
.sports-fixture-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.sports-hot-label {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    margin-bottom: 8px;
}

.sports-hot-card h2 {
    margin: 0 0 9px;
    font-size: 23px;
    line-height: 1.28;
    font-weight: 900;
}

.sports-hot-card h2 a {
    color: #111827;
    text-decoration: none;
}

.sports-hot-card p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.sports-hot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.sports-hot-meta a {
    color: #e3000f;
    text-decoration: none;
}

.sports-stream-card h3,
.sports-fixture-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.sports-stream-card ul,
.sports-fixture-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sports-stream-card li,
.sports-fixture-card li {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px;
}

.sports-stream-card li a {
    color: #111827;
    text-decoration: none;
    display: block;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.sports-stream-card li small,
.sports-fixture-card li small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.sports-fixture-card li div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sports-fixture-card li span {
    font-size: 12px;
    color: #111827;
    font-weight: 700;
}

.sports-fixture-card li a {
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.sports-fixture-card li a:hover {
    color: #e3000f;
}

.sports-league-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sports-league-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.sports-league-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sports-league-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #111827;
}

.sports-match-count {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
}

.sports-league-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 10px;
}

.sports-subhead {
    margin: 0 0 7px;
    font-size: 13px;
    font-weight: 900;
    color: #111827;
}

.sports-match-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sports-match-row {
    display: grid;
    grid-template-columns: 1.4fr 0.45fr 0.8fr;
    gap: 8px;
    align-items: center;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 10px;
}

.sports-match-teams span {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.sports-team-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sports-team-line a {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.sports-team-line a:hover {
    color: #e3000f;
}

.sports-match-score {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.sports-match-score strong {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #f1f5f9;
    height: 26px;
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.sports-match-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sports-match-meta small {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.sports-team-page {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sports-team-hero {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: linear-gradient(140deg, #0f172a 0%, #1f2937 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.sports-team-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sports-team-logo {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
}

.sports-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sports-team-brand h1 {
    margin: 0 0 4px;
    font-size: 32px;
    font-weight: 900;
}

.sports-team-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.sports-team-back {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.sports-team-stats {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.sports-team-stats div {
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fbfdff;
    padding: 8px 6px;
    text-align: center;
}

.sports-team-stats small {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: 700;
}

.sports-team-stats strong {
    display: block;
    margin-top: 2px;
    font-size: 15px;
    color: #111827;
    font-weight: 900;
}

.sports-team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
    gap: 12px;
}

.sports-team-hero-meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sports-team-league,
.sports-team-code {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 9px;
}

.sports-team-league {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.sports-team-code {
    background: rgba(227, 0, 15, 0.22);
    color: #fecaca;
    border: 1px solid rgba(254, 202, 202, 0.25);
}

.sports-team-meta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
}

.sports-team-info-card,
.sports-team-form-card,
.sports-team-standings-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.sports-team-info-card h3,
.sports-team-form-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.sports-team-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sports-team-info-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #edf1f7;
    border-radius: 9px;
    padding: 8px 10px;
    background: #fbfdff;
    gap: 8px;
}

.sports-team-info-card li span {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
}

.sports-team-info-card li strong {
    font-size: 12px;
    color: #111827;
    font-weight: 800;
    text-align: right;
}

.sports-team-form-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sports-team-form-item {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px 9px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.sports-team-form-item .form-result {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: #e2e8f0;
}

.sports-team-form-item strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    color: #111827;
}

.sports-team-form-item small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.sports-team-form-item.is-win .form-result {
    background: #dcfce7;
    color: #166534;
}

.sports-team-form-item.is-loss .form-result {
    background: #fee2e2;
    color: #991b1b;
}

.sports-team-form-item.is-draw .form-result {
    background: #fef3c7;
    color: #92400e;
}

.sports-team-form-item.is-live .form-result {
    background: #dbeafe;
    color: #1d4ed8;
}

.sports-team-form-item.is-upcoming .form-result {
    background: #e2e8f0;
    color: #334155;
}

.sports-team-summary-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sports-team-summary-card {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #f8fafc;
    padding: 8px 9px;
}

.sports-team-summary-card small {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sports-team-summary-card strong {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    color: #111827;
}

.sports-team-summary-card span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.sports-team-standings-card .editor-section-header h2 {
    font-size: 18px;
}

.market-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market-hero {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 16px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

.market-hero h1 {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 900;
}

.market-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.market-hero-link {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.market-rate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.market-rate-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
}

.market-rate-card.up {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.08);
}

.market-rate-card.down {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.08);
}

.market-rate-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
}

.market-rate-card strong {
    margin-top: 8px;
    display: block;
    font-size: 24px;
    line-height: 1.15;
    color: #111827;
}

.market-rate-meta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
}

.market-board {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px;
}

.market-board h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 900;
}

.editor-dashboard {
    border: 1px solid #e8edf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
    padding: 16px;
}

.editor-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.editor-section-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #111827;
}

.editor-slash {
    color: #ff275b;
    font-style: italic;
    font-size: 24px;
    margin: 0 4px;
}

.editor-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 18px;
}

.editor-featured-content h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.26;
    font-weight: 900;
    color: #111827;
}

.editor-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #374151;
    font-weight: 700;
}

.editor-stars {
    display: inline-flex;
    gap: 2px;
}

.editor-stars span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #fbbf24;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.editor-stars span.is-faded {
    background: #d1d5db;
}

.editor-featured-content p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.editor-author-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #6b7280;
}

.editor-author-initial {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #111827;
    font-weight: 800;
}

.editor-featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    background: linear-gradient(140deg, #23324b 0%, #0f172a 100%);
    display: block;
}

.editor-featured-image.no-image {
    background: linear-gradient(140deg, #1f2937 0%, #7f1d1d 55%, #0f172a 100%);
}

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

.editor-featured-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #22c55e;
    border-radius: 999px;
    padding: 6px 10px;
    text-transform: uppercase;
}

.editor-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-carousel-wrapper + .editor-sub-grid {
    margin-top: 14px;
}

.editor-sub-card {
    min-width: 0;
}

.editor-sub-image {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 0;
    background: linear-gradient(140deg, #1e293b 0%, #334155 100%);
}

.editor-sub-image.no-image {
    background: linear-gradient(145deg, #1f2937 0%, #243447 54%, #0f172a 100%);
}

.editor-sub-image.no-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 18%, transparent 40%),
        radial-gradient(circle at 80% 75%, rgba(227, 0, 15, 0.2) 0 14%, transparent 38%);
}

.editor-sub-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor-sub-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 11px;
    font-weight: 800;
}

.editor-sub-fallback svg {
    width: 24px;
    height: 24px;
}

.editor-sub-tag {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

.editor-sub-tag.is-green {
    background: #22c55e;
}

.editor-sub-tag.is-blue {
    background: #3b82f6;
}

.editor-sub-card h4 {
    margin: 10px 0 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.editor-sub-card h4 a {
    color: #111827;
    text-decoration: none;
}

.editor-sub-card h4 a:hover {
    color: #e3000f;
}

.editor-sub-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
}

.editor-sub-meta a {
    color: #6b7280;
}

.dashboard-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.panel-header-row h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: #111827;
}

.panel-header-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    padding: 7px 13px;
    background: #fff5f6;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.panel-header-link:hover {
    border-color: #f43f5e;
    color: #ffffff;
    background: #e11d48;
}

.panel-header-link-hot {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #be123c;
}

.panel-shell {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
}

.osb-panel-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.osb-panel-sidebar {
    position: sticky;
    top: 88px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.osb-panel-sidebar-brand {
    border: 1px solid #fecdd3;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    padding: 10px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.osb-panel-sidebar-brand img {
    width: 120px;
    height: 36px;
    object-fit: contain;
}

.osb-panel-sidebar-brand strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.osb-panel-sidebar-brand small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.osb-panel-sidebar-nav {
    display: grid;
    gap: 6px;
}

.osb-panel-sidebar-nav a {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
}

.osb-panel-sidebar-nav a:hover {
    border-color: #f43f5e;
    background: #fff1f2;
    color: #be123c;
}

.osb-panel-sidebar-nav a.is-active {
    border-color: #f43f5e;
    background: #e11d48;
    color: #ffffff;
}

.osb-panel-sidebar-links {
    display: grid;
    gap: 8px;
}

.osb-panel-sidebar-links .panel-header-link {
    width: 100%;
    justify-content: center;
}

.osb-panel-sidebar-logout {
    width: 100%;
    min-height: 38px;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    background: #fff1f2;
    color: #be123c;
    font-size: 12px;
    font-weight: 800;
}

.osb-panel-sidebar-logout:hover {
    border-color: #f43f5e;
    background: #e11d48;
    color: #ffffff;
}

.osb-panel-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 20px;
    color: #111827;
    border: 1px solid #fecdd3;
    background: #ffffff;
}

.panel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 150% at 0% 0%, rgba(239, 68, 68, 0.14), transparent 56%),
        radial-gradient(130% 130% at 100% 100%, rgba(248, 113, 113, 0.14), transparent 60%);
    pointer-events: none;
}

.panel-hero > * {
    position: relative;
    z-index: 1;
}

.panel-hero-admin {
    background: linear-gradient(130deg, #ffffff 0%, #fff5f6 55%, #ffe4e8 100%);
}

.panel-hero-moderator {
    background: linear-gradient(130deg, #ffffff 0%, #fff7ed 52%, #ffe4e6 100%);
}

.panel-hero-osb {
    background: linear-gradient(130deg, #ffffff 0%, #fef2f2 52%, #ffe4e6 100%);
}

.panel-hero-factory {
    background: linear-gradient(130deg, #ffffff 0%, #fef2f2 52%, #ffe9ec 100%);
}

.panel-hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #fecaca;
    background: #fff1f2;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #be123c;
}

.panel-hero h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
    color: #111827;
}

.panel-hero p {
    margin: 8px 0 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
}

.panel-hero-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.panel-hero-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #fecaca;
    background: #ffffff;
    color: #9f1239;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dx-panel-brand {
    border: 1px solid #ffd5db;
    border-radius: 18px;
    background: linear-gradient(130deg, #ffffff 0%, #fff7f8 54%, #fff0f3 100%);
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 14px;
}

.dx-panel-brand-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dx-brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dx-brand-dengex-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #fecdd3;
    background: #ffffff;
    object-fit: contain;
    padding: 6px;
}

.dx-brand-sanayi-logo {
    width: 130px;
    height: 36px;
    object-fit: contain;
}

.dx-brand-sep {
    width: 1px;
    height: 34px;
    background: #fecdd3;
}

.dx-brand-suite {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.dx-brand-suite small {
    margin: 0;
    color: #be123c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dx-brand-suite strong {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.dx-panel-brand h3 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.dx-panel-brand p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    max-width: 760px;
}

.dx-brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 3px;
}

.dx-brand-tags span {
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #ffffff;
    color: #be123c;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
}

.dx-panel-brand-right {
    border: 1px solid #fed7e2;
    border-radius: 14px;
    background: #ffffff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.dx-brand-support {
    text-decoration: none;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #fff1f2;
    color: #9f1239;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.15s ease;
}

.dx-brand-support strong {
    color: #be123c;
    font-size: 13px;
    font-weight: 900;
}

.dx-brand-support:hover {
    background: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

.dx-brand-support:hover strong {
    color: #ffffff;
}

.dx-panel-brand-right small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.auth-suite-body {
    margin: 0;
    min-height: 100vh;
    background: #fff6f7;
}

.panel-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

.panel-login-left {
    padding: 72px 64px;
    border-right: 1px solid #fecdd3;
    background: linear-gradient(130deg, #ffffff 0%, #fff3f5 56%, #ffe8ec 100%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.panel-login-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #fecdd3;
    background: #ffffff;
    color: #e11d48;
    display: grid;
    place-items: center;
}

.panel-login-badge svg {
    width: 22px;
    height: 22px;
}

.panel-login-logos {
    display: flex;
    align-items: center;
    gap: 14px;
}

.panel-login-dx-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    background: #ffffff;
    padding: 7px;
}

.panel-login-sh-logo {
    width: 145px;
    height: 42px;
    object-fit: contain;
}

.panel-login-suite {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.panel-login-suite small {
    color: #be123c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.panel-login-suite strong {
    color: #0f172a;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.15;
}

.panel-login-left h1 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 900;
    max-width: 540px;
}

.panel-login-left p {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
}

.panel-login-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-login-tags span {
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #ffffff;
    color: #be123c;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.panel-login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: #fffbfc;
}

.panel-login-card {
    width: 100%;
    max-width: 430px;
    border: 1px solid #ffd5db;
    border-radius: 20px;
    background: #ffffff;
    padding: 26px 24px;
    box-shadow: 0 26px 44px rgba(225, 29, 72, 0.08);
}

.panel-login-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
}

.panel-login-card > p {
    margin: 6px 0 18px;
    color: #64748b;
    font-size: 15px;
}

.panel-login-role-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
}

.panel-login-role-tab {
    border: 1px solid #fecdd3;
    border-radius: 10px;
    background: #fff7f8;
    color: #9f1239;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 8px;
    line-height: 1.2;
}

.panel-login-role-tab:hover {
    border-color: #fda4af;
    color: #be123c;
    background: #fff1f2;
}

.panel-login-role-tab.is-active {
    border-color: #e11d48;
    background: #e11d48;
    color: #ffffff;
}

.panel-login-private-note {
    border: 1px solid #fecdd3;
    border-radius: 10px;
    background: #fff7f8;
    color: #be123c;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 11px;
    margin-bottom: 12px;
}

.panel-login-status {
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    background: #f0fdf4;
    color: #166534;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
}

.panel-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-login-field span {
    font-size: 12px;
    font-weight: 800;
    color: #475569;
}

.panel-login-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    background: #fff7f8;
    color: #111827;
    font-size: 14px;
    padding: 0 14px;
}

.panel-login-field input:focus {
    outline: none;
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.16);
    background: #ffffff;
}

.panel-login-password-wrap {
    position: relative;
}

.panel-login-password-wrap input {
    padding-right: 48px;
}

.panel-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.panel-password-toggle:hover {
    color: #e11d48;
    background: #ffe4e6;
}

.panel-password-toggle svg {
    width: 18px;
    height: 18px;
}

.panel-login-remember {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #475569;
    font-weight: 700;
}

.panel-login-submit {
    margin-top: 4px;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(130deg, #ef233c 0%, #e11d48 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(225, 29, 72, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.panel-login-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(225, 29, 72, 0.28);
}

.panel-login-support {
    margin-top: 14px;
}

.panel-login-support a {
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #fff1f2;
    color: #9f1239;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.panel-login-support a strong {
    color: #be123c;
    font-size: 13px;
}

.panel-login-footer {
    margin-top: 14px;
    text-align: center;
}

.panel-login-footer p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.panel-login-footer span {
    display: inline-block;
    margin-top: 6px;
    border: 1px solid #fed7e2;
    border-radius: 999px;
    padding: 5px 10px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
}

.panel-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.panel-kpi-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-kpi-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-kpi-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.panel-kpi-card p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.panel-kpi-card strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.panel-kpi-card small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
}

.panel-kpi-card.is-warn strong {
    color: #b45309;
}

.panel-kpi-card.is-success strong {
    color: #15803d;
}

.panel-kpi-card.is-info strong {
    color: #1d4ed8;
}

.panel-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.panel-stats-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.panel-stat-card p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.panel-stat-card strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.panel-stat-warn strong {
    color: #b45309;
}

.panel-stat-success strong {
    color: #15803d;
}

.panel-stat-info strong {
    color: #1d4ed8;
}

.panel-stat-indigo strong {
    color: #4338ca;
}

.panel-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
    gap: 12px;
}

.panel-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 12px;
}

.panel-grid-2-equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-side-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.panel-card-large {
    min-height: 100%;
}

.panel-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.panel-card-head h3 {
    margin: 0;
    font-size: 18px;
    color: #111827;
    font-weight: 900;
}

.panel-muted {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.panel-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    background: #f1f5f9;
    color: #334155;
    font-size: 11px;
    font-weight: 800;
}

.panel-pill-warn {
    background: #fef3c7;
    color: #b45309;
}

.panel-progress-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-progress-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
}

.panel-progress-row strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.panel-progress-row small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}

.panel-progress-row span {
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.panel-progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.panel-progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #2563eb;
}

.panel-progress-bar.is-success {
    background: #22c55e;
}

.panel-progress-bar.is-warn {
    background: #f59e0b;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-list-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.panel-list-title {
    margin: 0;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.panel-list-sub {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 12px;
}

.panel-list-time {
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.panel-mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-mini-item {
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #f8fafc;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.panel-mini-item strong {
    color: #111827;
    font-weight: 900;
}

.panel-mini-news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-mini-news {
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #f8fafc;
    padding: 8px 10px;
}

.panel-mini-news p {
    margin: 0;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.panel-mini-news small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.panel-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.panel-news-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.panel-news-card:hover {
    border-color: #f4c7ce;
    background: #fff8f9;
}

.panel-news-title {
    margin: 0;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.panel-news-sub {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
}

.panel-news-time {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.panel-highlight-current {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff8f9;
    padding: 10px;
    margin-bottom: 10px;
}

.panel-highlight-selection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 420px;
    overflow: auto;
    padding-right: 2px;
}

.panel-priority-line {
    margin-bottom: 6px;
}

.panel-priority-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    background: #ffedd5;
    color: #c2410c;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.panel-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.panel-action-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-action-link {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.panel-action-link strong {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
}

.panel-action-link small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.panel-action-link:hover {
    border-color: #f2c7ce;
    background: #fff8f9;
}

.panel-social-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-social-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.panel-social-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
}

.panel-social-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.panel-social-top strong {
    font-size: 12px;
    font-weight: 900;
    color: #111827;
    letter-spacing: 0.04em;
}

.panel-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
    font-weight: 700;
}

.panel-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.panel-social-item label span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
}

.panel-form-actions {
    display: flex;
    justify-content: flex-end;
}

.panel-factory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.panel-factory-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
}

.panel-factory-name {
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.panel-factory-name a {
    color: #111827;
    text-decoration: none;
}

.panel-factory-name a:hover {
    color: #be123c;
}

.panel-factory-sector {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
}

.panel-factory-status {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 800;
}

.panel-factory-status.is-active {
    background: #dcfce7;
    color: #166534;
}

.panel-factory-status.is-passive {
    background: #e5e7eb;
    color: #374151;
}

.panel-action-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-action-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.panel-action-card:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.panel-action-card strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.panel-action-card small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
}

.panel-action-red {
    border-color: #fecdd3;
    background: #fff1f2;
}

.panel-action-red strong {
    color: #be123c;
}

.panel-action-red small {
    color: #9f1239;
}

.panel-action-indigo {
    border-color: #c7d2fe;
    background: #eef2ff;
}

.panel-action-indigo strong {
    color: #4338ca;
}

.panel-action-indigo small {
    color: #3730a3;
}

.panel-empty {
    margin: 0;
    border: 1px solid #fde68a;
    border-radius: 10px;
    background: #fffbeb;
    color: #92400e;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
}

.panel-empty-small {
    font-size: 12px;
    padding: 8px;
}

.dashboard-widget {
    background: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.weather-widget {
    position: relative;
    padding-top: 24px;
}

.weather-widget-tag {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #e3000f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 12px 0 10px 0;
}

.weather-city-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.weather-city-title {
    font-size: 13px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 0.2px;
}

.weather-nav-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #d7dce7;
    background: #ffffff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.weather-nav-btn:hover {
    border-color: #f4b8c0;
    color: #e3000f;
}

.weather-main-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.weather-main-temp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.weather-temp-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.weather-temp-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.weather-main-temp strong {
    font-size: 46px;
    line-height: 1;
    color: #111827;
}

.weather-main-temp span {
    font-size: 18px;
    font-weight: 800;
    color: #374151;
}

.weather-main-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.weather-main-stats li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.weather-stat-icon {
    width: 17px;
    height: 17px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.weather-stat-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
}

.weather-widget h3 {
    margin: 12px 0 4px;
    font-size: 28px;
    font-weight: 900;
    color: #111827;
}

.weather-widget p {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 13px;
}

.weather-city-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 6px;
    scrollbar-width: thin;
}

.weather-city-tab {
    border: 1px solid #e1e7f0;
    border-radius: 999px;
    background: #ffffff;
    color: #4b5563;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 9px;
    white-space: nowrap;
}

.weather-city-tab.is-active {
    background: #e3000f;
    border-color: #e3000f;
    color: #ffffff;
}

.weather-forecast-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.weather-forecast-item {
    text-align: center;
    border-top: 1px solid #f1f4f8;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-forecast-item span {
    font-size: 10px;
    font-weight: 800;
    color: #4b5563;
}

.weather-forecast-item small {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.dashboard-follow {
    background: transparent;
}

.follow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.follow-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid #eceff4;
    background: #ffffff;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.follow-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.follow-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.follow-icon-facebook {
    background: #eaf2ff;
    color: #1d4ed8;
}

.follow-icon-x {
    background: #e5e7eb;
    color: #111827;
}

.follow-icon-linkedin {
    background: #e0f2fe;
    color: #0369a1;
}

.follow-icon-instagram {
    background: #fce7f3;
    color: #be185d;
}

.follow-box strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.follow-box small {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.osb-management-section {
    border-radius: 16px;
    background: linear-gradient(180deg, #f9fbff 0%, #f4f7fc 100%);
    border: 1px solid #e6edf8;
    padding: 14px;
}

.osb-scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #d9e2f0;
    background: #ffffff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.osb-scroll-btn:hover {
    color: #e3000f;
    border-color: #f2b8be;
    transform: translateY(-1px);
}

.osb-management-scroller {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.osb-management-scroller::-webkit-scrollbar {
    height: 8px;
}

.osb-management-scroller::-webkit-scrollbar-thumb {
    background: #d5dce8;
    border-radius: 999px;
}

.osb-management-item {
    flex: 0 0 250px;
    scroll-snap-align: start;
}

.osb-management-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    min-height: 340px;
    color: #ffffff;
    background: #111827;
    text-decoration: none;
    border: 1px solid #23324b;
}

.osb-management-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.osb-management-card.no-image {
    background: linear-gradient(145deg, #0b223f 0%, #4b1f2f 60%, #0f172a 100%);
}

.osb-management-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 14px 16px;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.08) 20%, rgba(8, 12, 20, 0.93) 85%);
    z-index: 2;
}

.osb-management-chip {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    border-radius: 999px;
    background: #4f46e5;
    color: #ffffff;
    padding: 4px 10px;
}

.osb-management-overlay h3 {
    margin: 0;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 800;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.osb-management-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.stream-card {
    background-color: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 12px;
    padding: 16px;
}

.stream-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

.stream-meta a {
    color: #e3000f;
    text-decoration: none;
    font-weight: 700;
}

.stream-card h2,
.stream-card h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.stream-card h2 a,
.stream-card h3 a {
    color: #111827;
    text-decoration: none;
}

.stream-card p {
    margin-bottom: 0;
    color: #4b5563;
}

.home-sidebar {
    position: sticky;
    top: 12px;
}

.sidebar-box {
    background-color: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 12px;
    padding: 14px;
}

.sidebar-box h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sidebar-box ul {
    margin: 0;
    padding-left: 16px;
}

.agenda-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agenda-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #f1f4f8;
}

.agenda-list li:last-child {
    border-bottom: 0;
}

.agenda-time {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 22px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 800;
}

.agenda-link {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.agenda-link:hover {
    color: #e3000f;
}

.sidebar-box li {
    margin-bottom: 8px;
}

.agenda-list li {
    margin-bottom: 0;
}

.sidebar-box a {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
}

.ranked-news-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: ranked-counter;
}

.ranked-news-list li {
    counter-increment: ranked-counter;
    margin-bottom: 10px;
    padding-left: 38px;
    position: relative;
}

.ranked-news-list li::before {
    content: counter(ranked-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 22px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranked-news-list a {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.article-detail-card {
    background-color: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 16px;
    padding: 26px;
}

.article-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
    letter-spacing: -0.4px;
}

.article-excerpt {
    font-size: 18px;
    color: #374151;
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #111827;
}

.article-pro-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-pro-card {
    border: 1px solid #e8edf5;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.article-pro-cover-wrap {
    position: relative;
    aspect-ratio: 16 / 8;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.article-pro-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-pro-cover-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.article-pro-head {
    padding: 16px 18px 10px;
}

.article-pro-excerpt {
    border-left: 4px solid #e3000f;
    background: #f8fbff;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 0;
}

.article-pro-content {
    padding: 0 18px 16px;
}

.article-pro-content p {
    margin: 0 0 14px;
}

.article-pro-content p:last-child {
    margin-bottom: 0;
}

.article-pro-content h2,
.article-pro-content h3,
.article-pro-content h4 {
    margin: 22px 0 10px;
    color: #0f172a;
    line-height: 1.3;
    font-weight: 900;
}

.article-pro-content ul,
.article-pro-content ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

.article-pro-content li {
    margin-bottom: 8px;
}

.article-pro-content blockquote {
    margin: 18px 0;
    padding: 12px 14px;
    border-left: 4px solid #e3000f;
    background: #f8fbff;
    border-radius: 10px;
    color: #1f2937;
    font-weight: 700;
}

.article-pro-content a {
    color: #0b5ed7;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.article-pro-content a:hover {
    color: #e3000f;
}

.article-pro-inline-ad {
    margin: 0 18px 14px;
}

.article-pro-footer {
    border-top: 1px solid #edf1f7;
    padding: 12px 18px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.article-pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-pro-share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.article-pro-share a {
    text-decoration: none;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 800;
}

.article-pro-share a:hover {
    color: #e3000f;
    border-color: #f2c7ce;
}

.article-pro-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-pro-meta-card,
.article-pro-editor-card,
.article-pro-flow-card-box,
.article-pro-related {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
}

.article-pro-meta-card h3,
.article-pro-editor-head h3,
.article-pro-flow-card-box h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.article-pro-meta-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.article-pro-meta-grid div {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px;
}

.article-pro-meta-grid span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.article-pro-meta-grid strong {
    display: block;
    margin-top: 3px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.article-pro-editor-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.article-pro-editor-head span {
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 9px;
}

.article-editor-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-editor-group {
    border: 1px solid #edf1f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 9px;
}

.article-editor-group h4 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.article-editor-group label {
    display: block;
}

.article-editor-group label + label {
    margin-top: 8px;
}

.article-editor-group label span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.article-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.article-editor-checks {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-editor-checks label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

.article-editor-actions {
    display: flex;
    justify-content: flex-end;
}

.article-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.article-editor-toolbar .btn {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-color: #d9e2ef;
}

.article-seo-preview {
    border: 1px dashed #dbe4f0;
    border-radius: 10px;
    background: #ffffff;
    padding: 9px;
}

.article-seo-preview strong {
    display: block;
    font-size: 12px;
    color: #0f172a;
    margin-bottom: 4px;
}

.article-seo-preview-title {
    margin: 0;
    color: #1a0dab;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.article-seo-preview-url {
    display: block;
    margin-top: 3px;
    color: #188038;
    font-size: 12px;
    word-break: break-all;
}

.article-seo-preview-desc {
    margin: 4px 0 0;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.4;
}

.article-pro-flow-list {
    margin-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-pro-flow-item {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 9px;
    text-decoration: none;
}

.article-pro-flow-item span {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.article-pro-flow-item small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.article-pro-related-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.article-pro-related-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.article-pro-related-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-pro-related-body {
    padding: 10px;
}

.article-pro-related-body h3 {
    margin: 7px 0 0;
    font-size: 16px;
    line-height: 1.34;
    font-weight: 900;
}

.article-pro-related-body h3 a {
    color: #111827;
    text-decoration: none;
}

.article-pro-related-body h3 a:hover {
    color: #e3000f;
}

.news-grid-card {
    background-color: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-grid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.news-grid-card h2,
.news-grid-card h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 800;
}

.news-grid-card h2 a,
.news-grid-card h3 a {
    color: #111827;
    text-decoration: none;
}

.news-grid-card p {
    margin-bottom: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.news-grid-card-compact h2,
.news-grid-card-compact h3 {
    font-size: 19px;
}

.category-hub {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.category-hub-head {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfcff 0%, #f4f8fd 100%);
    padding: 16px;
}

.category-hub-head h1 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    color: #111827;
}

.category-hub-head p {
    margin: 0 0 6px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}

.category-hub-head small {
    color: #64748b;
    font-size: 12px;
}

.category-featured-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.category-featured-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 8;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.category-featured-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-featured-body {
    padding: 12px;
}

.category-featured-body h2 {
    margin: 8px 0;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
}

.category-featured-body h2 a {
    color: #111827;
    text-decoration: none;
}

.category-featured-body p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.category-sidebar-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
    position: sticky;
    top: 90px;
}

.category-sidebar-card h2 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #111827;
}

.category-pro-shell {
    gap: 16px;
}

.category-pro-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.category-pro-head-main {
    max-width: 760px;
}

.category-parent-link a {
    color: #be123c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.category-parent-link a:hover {
    color: #e3000f;
}

.category-pro-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.category-subnav {
    border: 1px solid #e7ecf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 10px;
}

.category-subnav-track {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-subnav-track::-webkit-scrollbar {
    display: none;
}

.category-subnav-item {
    min-width: 190px;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    background: #fbfdff;
    padding: 9px;
    text-decoration: none;
    flex-shrink: 0;
}

.category-subnav-item strong {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
}

.category-subnav-item small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
}

.category-subnav-item.is-active {
    border-color: #fecdd3;
    background: #fff7f8;
}

.category-subsections {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
    padding: 14px;
}

.category-subsections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.category-subsection-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 11px;
}

.category-subsection-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.category-subsection-head h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

.category-subsection-head h3 a {
    color: #111827;
    text-decoration: none;
}

.category-subsection-head h3 a:hover {
    color: #e3000f;
}

.category-subsection-head span {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.category-subsection-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.category-subsection-card li {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px;
}

.category-subsection-card li.is-empty {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.category-subsection-card li a {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    font-weight: 800;
}

.category-subsection-card li a:hover {
    color: #e3000f;
}

.category-subsection-card li small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.category-pro-hero-board {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
    padding: 12px;
}

.category-pro-quick-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.category-pro-quick-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.category-pro-quick-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.category-pro-quick-image.no-image {
    background: linear-gradient(140deg, #243447 0%, #111827 100%);
}

.category-pro-quick-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pro-quick-tag {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 999px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
}

.category-pro-quick-card h3 {
    margin: 10px 10px 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.category-pro-quick-card h3 a {
    color: #111827;
    text-decoration: none;
}

.category-pro-quick-card h3 a:hover {
    color: #e3000f;
}

.category-pro-quick-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 10px;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    gap: 8px;
}

.category-pro-quick-meta a {
    color: #e3000f;
    text-decoration: none;
}

.category-pro-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-pro-flow-list {
    border-top: 1px solid #edf2f7;
    padding-top: 10px;
}

.category-pro-flow-list h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #111827;
    font-weight: 900;
}

.category-pro-flow-item {
    display: block;
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px;
    text-decoration: none;
}

.category-pro-flow-item + .category-pro-flow-item {
    margin-top: 8px;
}

.category-pro-flow-item span {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.category-pro-flow-item small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.category-pro-stream {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8fd 100%);
    padding: 14px;
}

.category-pro-flow-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-pro-flow-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
}

.category-pro-flow-image {
    display: block;
    position: relative;
    min-height: 100%;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.category-pro-flow-image.no-image {
    background: linear-gradient(140deg, #243447 0%, #111827 100%);
}

.category-pro-flow-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pro-flow-body {
    padding: 12px;
}

.category-pro-flow-body h3 {
    margin: 8px 0;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 900;
}

.category-pro-flow-body h3 a {
    color: #111827;
    text-decoration: none;
}

.category-pro-flow-body h3 a:hover {
    color: #e3000f;
}

.category-pro-flow-body p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.category-pro-read-link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    color: #e3000f;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.category-pro-side-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-pro-box {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.category-pro-box-head {
    margin-bottom: 8px;
}

.category-pro-box-head h3 {
    margin: 0;
    font-size: 17px;
    color: #111827;
    font-weight: 900;
}

.category-pro-editors,
.category-pro-files {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-pro-editor-item,
.category-pro-file-item {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 9px;
    text-decoration: none;
}

.category-pro-editor-item span,
.category-pro-file-item strong {
    display: block;
    color: #111827;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.category-pro-editor-item small,
.category-pro-file-item small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.breaking-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.breaking-command {
    border: 1px solid #f2c6cd;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff6f8 0%, #ffffff 58%, #f8fbff 100%);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.breaking-live-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 4px 10px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.breaking-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
    animation: breakingPulse 1.3s infinite;
}

@keyframes breakingPulse {
    0% { transform: scale(0.88); opacity: 0.8; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.88); opacity: 0.8; }
}

.breaking-command h1 {
    margin: 8px 0 6px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    color: #111827;
}

.breaking-command p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.breaking-last-update {
    border: 1px solid #f2c6cd;
    border-radius: 10px;
    background: #fff8f9;
    padding: 9px 10px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    min-width: 165px;
}

.breaking-last-update strong {
    display: block;
    margin-top: 3px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.breaking-lead-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.breaking-lead-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 8;
    background: linear-gradient(145deg, #1f2937 0%, #334155 100%);
}

.breaking-lead-image.no-image {
    background: linear-gradient(140deg, #243447 0%, #111827 100%);
}

.breaking-lead-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breaking-lead-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    background: #e3000f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.breaking-lead-body {
    padding: 12px;
}

.breaking-lead-body h2 {
    margin: 8px 0;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 900;
}

.breaking-lead-body h2 a {
    color: #111827;
    text-decoration: none;
}

.breaking-lead-body h2 a:hover {
    color: #e3000f;
}

.breaking-lead-body p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.breaking-quick-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.breaking-quick-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.breaking-quick-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #243447 0%, #111827 100%);
}

.breaking-quick-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breaking-quick-body {
    padding: 10px;
}

.breaking-quick-body small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.breaking-quick-body h3 {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.36;
    font-weight: 900;
}

.breaking-quick-body h3 a {
    color: #111827;
    text-decoration: none;
}

.breaking-quick-body h3 a:hover {
    color: #e3000f;
}

.breaking-timeline-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px;
    height: 100%;
}

.breaking-timeline-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.breaking-timeline-head h2 {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
}

.breaking-timeline-head span {
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 800;
}

.breaking-timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breaking-timeline-list li {
    border: 1px solid #edf1f7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 8px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
}

.breaking-timeline-list time {
    font-size: 12px;
    font-weight: 900;
    color: #e3000f;
}

.breaking-timeline-list a {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.breaking-timeline-list a:hover {
    color: #e3000f;
}

.breaking-timeline-list small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.breaking-flow-section {
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcff 0%, #f6f8fd 100%);
    padding: 14px;
}

.breaking-flow-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breaking-flow-item {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
}

.breaking-flow-time {
    border: 1px solid #f2c6cd;
    border-radius: 10px;
    background: #fff8f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.breaking-flow-time strong {
    color: #e3000f;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.breaking-flow-time span {
    margin-top: 4px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
}

.breaking-flow-body h3 {
    margin: 8px 0;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 900;
}

.breaking-flow-body h3 a {
    color: #111827;
    text-decoration: none;
}

.breaking-flow-body h3 a:hover {
    color: #e3000f;
}

.breaking-flow-body p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

.breaking-side-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breaking-pulse-card {
    border: 1px solid #e8edf5;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.breaking-pulse-card h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.breaking-pulse-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breaking-pulse-item {
    border: 1px solid #edf1f7;
    border-radius: 9px;
    background: #fbfdff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.breaking-pulse-item strong {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .hero-carousel-inner .carousel-item::after {
        padding-bottom: 66%;
    }

    .editor-section-header h2 {
        font-size: 18px;
    }

    .editor-featured-card {
        grid-template-columns: 1fr;
    }

    .editor-featured-content h3 {
        font-size: 22px;
    }

    .editor-featured-image {
        min-height: 240px;
    }

    .editor-sub-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-carousel-wrapper + .editor-sub-grid {
        margin-top: 12px;
    }

    .panel-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-stats-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .panel-kpi-grid,
    .panel-kpi-grid-3,
    .panel-kpi-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-main-grid {
        grid-template-columns: 1fr;
    }

    .osb-panel-layout {
        grid-template-columns: 1fr;
    }

    .osb-panel-sidebar {
        position: static;
    }

    .osb-panel-sidebar-brand {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .panel-grid-2 {
        grid-template-columns: 1fr;
    }

    .panel-two-col {
        grid-template-columns: 1fr;
    }

    .panel-action-grid {
        grid-template-columns: 1fr;
    }

    .panel-action-grid-2 {
        grid-template-columns: 1fr;
    }

    .panel-social-list,
    .panel-social-grid {
        grid-template-columns: 1fr;
    }

    .panel-factory-grid {
        grid-template-columns: 1fr;
    }

    .weather-main-temp strong {
        font-size: 38px;
    }

    .follow-grid {
        grid-template-columns: 1fr;
    }

    .osb-mini-card {
        flex-basis: 210px;
    }

    .latest-pro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .turkey-league-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .turkey-league-featured-news {
        grid-column: span 2;
    }

    .turkey-league-layout {
        grid-template-columns: 1fr;
    }

    .category-rank-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industrial-hot-layout {
        grid-template-columns: 1fr;
    }

    .sanayi-special-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rental-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osb-bulletins-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osb-bulletin-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sanayi-bulletin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osb-job-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .osb-job-date {
        text-align: left;
    }

    .sports-league-grid {
        grid-template-columns: 1fr;
    }

    .sports-news-stage {
        grid-template-columns: 1fr 1fr;
    }

    .sports-team-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sports-team-meta-grid {
        grid-template-columns: 1fr;
    }

    .sports-team-layout {
        grid-template-columns: 1fr;
    }

    .sports-league-split {
        grid-template-columns: 1fr;
    }

    .sports-match-row {
        grid-template-columns: 1.2fr 0.45fr 0.8fr;
    }

    .market-rate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osb-management-item {
        flex-basis: 210px;
    }

    .osb-management-card {
        min-height: 300px;
    }

    .osb-management-overlay h3 {
        font-size: 23px;
    }

    .dx-panel-brand {
        grid-template-columns: 1fr;
    }

    .dx-panel-brand-right {
        padding: 12px;
    }

    .panel-login-shell {
        grid-template-columns: 1fr;
    }

    .panel-login-left {
        padding: 44px 28px;
        border-right: 0;
        border-bottom: 1px solid #fecdd3;
    }

    .panel-login-left h1 {
        font-size: 34px;
    }

    .panel-login-right {
        padding: 36px 20px;
    }

    .hero-main-card {
        min-height: 320px;
    }

    .hero-title {
        font-size: 27px;
    }

    .section-title {
        font-size: 24px;
    }

    .article-title {
        font-size: 30px;
    }

    .article-pro-head {
        padding: 14px 14px 10px;
    }

    .article-pro-content {
        padding: 0 14px 14px;
    }

    .article-pro-inline-ad {
        margin: 0 14px 12px;
    }

    .article-pro-footer {
        padding: 10px 14px 14px;
    }

    .article-editor-grid {
        grid-template-columns: 1fr;
    }

    .category-hub-head h1 {
        font-size: 24px;
    }

    .category-featured-body h2 {
        font-size: 20px;
    }

    .home-sidebar {
        position: static;
    }

    .category-sidebar-card {
        position: static;
    }

    .category-pro-head {
        flex-direction: column;
    }

    .category-subsections-grid {
        grid-template-columns: 1fr;
    }

    .category-pro-flow-card {
        grid-template-columns: 1fr;
    }

    .category-pro-flow-image {
        aspect-ratio: 16 / 9;
    }

    .breaking-command {
        flex-direction: column;
    }

    .breaking-last-update {
        min-width: 0;
        width: 100%;
    }

    .breaking-flow-item {
        grid-template-columns: 1fr;
    }

    .breaking-flow-time {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .editor-dashboard {
        padding: 12px;
    }

    .editor-sub-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel-wrapper + .editor-sub-grid {
        margin-top: 10px;
    }

    .panel-shell {
        padding: 0 12px;
    }

    .osb-panel-sidebar-brand {
        grid-template-columns: 1fr;
    }

    .osb-panel-sidebar-brand img {
        width: 126px;
        height: 38px;
    }

    .panel-hero h3 {
        font-size: 21px;
    }

    .panel-header-row h2 {
        font-size: 20px;
    }

    .panel-stats-grid,
    .panel-stats-grid-3 {
        grid-template-columns: 1fr;
    }

    .panel-kpi-grid,
    .panel-kpi-grid-3,
    .panel-kpi-grid-4 {
        grid-template-columns: 1fr;
    }

    .panel-form-actions {
        justify-content: flex-start;
    }

    .dx-brand-logos {
        flex-wrap: wrap;
        gap: 8px;
    }

    .dx-brand-sep {
        display: none;
    }

    .dx-panel-brand h3 {
        font-size: 21px;
    }

    .panel-login-left {
        padding: 28px 16px;
    }

    .panel-login-left h1 {
        font-size: 28px;
    }

    .panel-login-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .panel-login-card h2 {
        font-size: 28px;
    }

    .panel-login-role-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .weather-main-row {
        flex-direction: column;
    }

    .osb-mini-card {
        flex-basis: 172px;
    }

    .osb-mini-image {
        min-height: 92px;
    }

    .osb-mini-card h4 {
        font-size: 12px;
        min-height: 30px;
    }

    .latest-pro-grid {
        grid-template-columns: 1fr;
    }

    .osb-bulletins-grid {
        grid-template-columns: 1fr;
    }

    .osb-bulletin-board-grid {
        grid-template-columns: 1fr;
    }

    .sanayi-bulletin-grid {
        grid-template-columns: 1fr;
    }

    .category-pro-quick-grid {
        grid-template-columns: 1fr;
    }

    .category-subnav-item {
        min-width: 170px;
    }

    .article-title {
        font-size: 26px;
    }

    .article-pro-head {
        padding: 12px 12px 8px;
    }

    .article-pro-content {
        padding: 0 12px 12px;
        font-size: 16px;
    }

    .article-pro-inline-ad {
        margin: 0 12px 10px;
    }

    .article-pro-footer {
        padding: 10px 12px 12px;
    }

    .article-pro-meta-grid {
        grid-template-columns: 1fr;
    }

    .article-pro-editor-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-editor-actions {
        justify-content: flex-start;
    }

    .breaking-command h1 {
        font-size: 29px;
    }

    .breaking-quick-grid {
        grid-template-columns: 1fr;
    }

    .breaking-flow-body h3 {
        font-size: 18px;
    }

    .turkey-league-grid {
        grid-template-columns: 1fr;
    }

    .turkey-league-featured-news {
        grid-column: span 1;
    }

    .turkey-standings-list li,
    .sports-standings-list li {
        grid-template-columns: 22px 20px 1fr 24px 30px;
        gap: 6px;
        padding: 5px;
    }

    .category-rank-grid {
        grid-template-columns: 1fr;
    }

    .sanayi-special-grid {
        grid-template-columns: 1fr;
    }

    .rental-market-grid {
        grid-template-columns: 1fr;
    }

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

    .market-rate-grid {
        grid-template-columns: 1fr;
    }

    .sports-hero {
        flex-direction: column;
    }

    .sports-news-stage {
        grid-template-columns: 1fr;
    }

    .sports-team-hero {
        flex-direction: column;
    }

    .sports-team-brand h1 {
        font-size: 25px;
    }

    .sports-team-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sports-team-summary-grid {
        grid-template-columns: 1fr;
    }

    .sports-match-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .sports-match-meta {
        align-items: flex-start;
    }

    .weather-forecast-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-link-blink {
        animation: none;
    }
}

/* OSB Header Logo Strip */
.osb-logo-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid #dbe2ef;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
    overflow: hidden;
}

.osb-logo-marquee {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 8px 0;
    animation: osbLogoMarquee 42s linear infinite;
}

.osb-logo-strip:hover .osb-logo-marquee {
    animation-play-state: paused;
}

@keyframes osbLogoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.osb-logo-pill {
    min-width: 220px;
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 6px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.osb-logo-pill:hover {
    border-color: #f3b5c0;
    box-shadow: 0 6px 16px rgba(227, 0, 15, 0.08);
}

.osb-logo-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(145deg, #111827 0%, #374151 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.osb-logo-name {
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.osb-logo-pill small {
    margin-left: auto;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.home-osb-names-section {
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    background: linear-gradient(180deg, #fcfdff 0%, #f4f7fc 100%);
    padding: 14px;
}

.home-osb-guide-subtitle {
    margin: 4px 0 10px;
    color: #64748b;
    font-size: 13px;
}

.home-osb-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.home-osb-guide-card {
    border: 1px solid #e7ecf5;
    border-radius: 14px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.home-osb-guide-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.home-osb-guide-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.home-osb-guide-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #fff1f2;
    color: #be123c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 7px;
}

.home-osb-guide-head small {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-align: right;
}

.home-osb-guide-pill {
    flex: 1;
    min-width: 0;
}

.home-osb-guide-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5eaf3;
    background: #f8fafc;
    aspect-ratio: 16 / 9;
}

.home-osb-guide-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.home-osb-guide-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.home-osb-guide-meta span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5eaf3;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
}

.home-osb-guide-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.home-osb-guide-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3000f;
    border-radius: 999px;
    background: #e3000f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    padding: 6px 10px;
    flex: 1;
}

.home-osb-guide-link.is-soft {
    border-color: #dbe3f0;
    background: #ffffff;
    color: #334155;
}

.home-osb-guide-link:hover {
    color: #ffffff;
    filter: brightness(0.96);
}

.home-osb-guide-link.is-soft:hover {
    color: #0f172a;
    background: #f8fafc;
}

/* OSB Corporate Pages */
.osb-corporate-shell,
.osb-detail-shell {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.osb-corporate-hero,
.osb-detail-hero {
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    background: linear-gradient(145deg, #0f172a 0%, #1f2937 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.osb-corporate-kicker,
.osb-detail-kicker {
    margin: 0 0 6px;
    color: #fecdd3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.osb-corporate-hero h1,
.osb-detail-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}

.osb-corporate-hero p,
.osb-detail-hero p {
    margin: 8px 0 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.45;
    max-width: 900px;
}

.osb-corporate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #fda4af;
    background: #e3000f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    padding: 8px 14px;
    white-space: nowrap;
}

.osb-corporate-cta:hover {
    color: #ffffff;
    background: #be123c;
}

.osb-search-panel {
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.osb-search-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 10px;
    align-items: end;
}

.osb-search-form-grid label {
    display: grid;
    gap: 6px;
}

.osb-search-form-grid label span {
    font-size: 11px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.osb-search-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.osb-search-meta {
    margin: 8px 0 0;
    font-size: 12px;
    color: #64748b;
}

.osb-search-pagination {
    margin-top: 12px;
}

.osb-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.osb-corporate-card {
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
}

.osb-corporate-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, #e11d48 0%, #be123c 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.osb-corporate-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.osb-corporate-card h3 a {
    color: #111827;
    text-decoration: none;
}

.osb-corporate-card p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
}

.osb-corporate-card-links {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.osb-corporate-card-links a {
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.osb-corporate-card-links a:hover {
    color: #e3000f;
}

.osb-detail-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.osb-detail-card {
    border: 1px solid #e5eaf3;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
}

.osb-detail-map-card {
    padding: 0;
    overflow: hidden;
}

.osb-detail-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #e5eaf3;
    padding: 12px;
}

.osb-detail-map-kicker {
    margin: 0;
    color: #be123c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.osb-detail-map-head h2 {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.osb-detail-map-frame {
    border-top: 0;
    width: 100%;
    aspect-ratio: 16 / 7;
    background: #f8fafc;
}

.osb-detail-map-frame iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.osb-chairman-spotlight {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.osb-chairman-photo {
    border-radius: 10px;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(145deg, #111827 0%, #334155 100%);
}

.osb-chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.osb-chairman-main {
    display: flex;
    flex-direction: column;
}

.osb-chairman-kicker {
    margin: 0;
    color: #be123c;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.osb-chairman-main h2 {
    margin: 6px 0 0;
    font-size: 28px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 900;
}

.osb-chairman-main h3 {
    margin: 6px 0 0;
    font-size: 16px;
    color: #475569;
    font-weight: 800;
}

.osb-chairman-main p {
    margin: 10px 0 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
}

.osb-chairman-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
}

.osb-management-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.osb-team-card {
    border: 1px solid #e8edf5;
    border-radius: 10px;
    background: #f8fbff;
    padding: 8px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 9px;
}

.osb-team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #111827 0%, #334155 100%);
}

.osb-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.osb-team-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

.osb-team-title {
    margin: 5px 0 0;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.osb-team-bio {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.osb-chairman-blog-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.osb-chairman-blog-item {
    border: 1px solid #e8edf5;
    border-radius: 10px;
    background: #f8fbff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
}

.osb-chairman-blog-media {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    min-height: 120px;
}

.osb-chairman-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.osb-chairman-blog-body {
    padding: 10px;
}

.osb-chairman-blog-body h3 {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.osb-chairman-blog-body p {
    margin: 7px 0 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.osb-chairman-blog-body small {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.osb-detail-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.osb-bulletin-list,
.osb-rental-list,
.osb-job-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.osb-bulletin-item,
.osb-rental-item,
.osb-job-item {
    border: 1px solid #e8edf5;
    border-radius: 10px;
    background: #f8fbff;
    padding: 10px;
}

.osb-bulletin-item h3,
.osb-rental-item h4,
.osb-job-item h4 {
    margin: 0;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.osb-bulletin-item p,
.osb-rental-item p,
.osb-job-item p {
    margin: 6px 0 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.4;
}

.osb-bulletin-item small,
.osb-rental-item small,
.osb-job-item small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 11px;
}

.osb-rental-meta,
.osb-job-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.osb-rental-meta span,
.osb-job-meta span {
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

.osb-rental-meta strong,
.osb-job-meta strong {
    color: #be123c;
    font-size: 12px;
    font-weight: 900;
}

.osb-search-head h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.osb-search-form {
    display: flex;
    gap: 6px;
}

/* OSB Panel Extensions */
.panel-stats-grid.panel-stats-grid-extended {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.panel-input-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.panel-form-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-input-grid label span,
.panel-form-stack label span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.panel-section-divider {
    margin: 12px 0 8px;
    padding-top: 10px;
    border-top: 1px dashed #dbe3ef;
}

.panel-chief-preview {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
}

.panel-chief-photo {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #111827 0%, #334155 100%);
}

.panel-chief-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-chief-content strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.panel-chief-content p {
    margin: 4px 0 0;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.panel-chief-content small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .home-osb-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .osb-grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-stats-grid.panel-stats-grid-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-osb-guide-grid {
        grid-template-columns: 1fr;
    }

    .home-osb-guide-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-osb-guide-head small {
        text-align: left;
    }

    .home-osb-guide-actions {
        flex-direction: column;
    }

    .osb-logo-pill {
        min-width: 190px;
    }

    .osb-corporate-hero,
    .osb-detail-hero {
        flex-direction: column;
    }

    .osb-corporate-hero h1,
    .osb-detail-hero h1 {
        font-size: 25px;
    }

    .osb-grid-cards {
        grid-template-columns: 1fr;
    }

    .osb-search-form-grid {
        grid-template-columns: 1fr;
    }

    .osb-search-form {
        flex-direction: column;
    }

    .osb-chairman-spotlight {
        grid-template-columns: 1fr;
    }

    .osb-management-grid {
        grid-template-columns: 1fr;
    }

    .osb-chairman-blog-item {
        grid-template-columns: 1fr;
    }

    .osb-detail-map-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .osb-detail-map-frame {
        aspect-ratio: 16 / 10;
    }

    .panel-input-grid {
        grid-template-columns: 1fr;
    }

    .panel-stats-grid.panel-stats-grid-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .panel-stats-grid.panel-stats-grid-extended {
        grid-template-columns: 1fr;
    }
}

/* Homepage Hero and Mobile Stability Fixes */
.home-main-row > [class*="col-"] {
    min-width: 0;
}

.editor-dashboard {
    overflow: hidden;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.home-hero-grid > * {
    min-width: 0;
}

.home-hero-grid .hero-carousel-wrapper {
    width: 100%;
}

.hero-carousel-inner .carousel-item {
    overflow: hidden;
}

.hero-caption h2 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-hero-under-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.home-hero-under-card {
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    overflow: hidden;
}

.home-hero-under-card .editor-sub-image {
    min-height: 0;
    height: 126px;
    border-radius: 6px;
}

.home-hero-under-card .editor-sub-image.no-image {
    aspect-ratio: 16 / 9;
}

.home-hero-under-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 2px 4px 0;
}

.home-hero-under-body h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.32;
}

.home-hero-under-body h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-hero-under-body .editor-sub-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 1400px) {
    .home-hero-under-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-hero-under-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .home-hero-under-card .editor-sub-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .home-hero-under-body {
        padding: 2px 0 0;
        gap: 6px;
    }

    .home-hero-under-body h4 {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .home-hero-under-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-under-card {
        grid-template-columns: 154px minmax(0, 1fr);
    }
}

@media (max-width: 991.98px) {
    .home-main-row {
        row-gap: 16px;
    }

    .hero-carousel-inner .carousel-item::after {
        padding-bottom: 64%;
    }

    .hero-caption {
        padding: 96px 18px 18px;
    }
}

@media (max-width: 767.98px) {
    .home-hero-under-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .home-hero-under-card {
        grid-template-columns: minmax(0, 1fr);
        padding: 9px;
        gap: 9px;
    }

    .home-hero-under-card .editor-sub-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .hero-carousel-inner .carousel-item::after {
        padding-bottom: 68%;
    }
}

@media (max-width: 575px) {
    .home-main-row {
        row-gap: 14px;
    }

    .editor-dashboard {
        padding: 12px;
    }

    .hero-carousel-inner .carousel-item::after {
        padding-bottom: 74%;
    }

    .hero-caption {
        padding: 82px 14px 14px;
    }

    .hero-caption h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .slider-pagination-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .slider-pagination-bar::-webkit-scrollbar {
        display: none;
    }

    .slider-pagination-item {
        flex: 1 0 56px;
        min-height: 42px;
        padding: 10px 0;
        font-size: 13px;
    }

    .slider-next-btn {
        flex: 0 0 44px;
        max-width: 44px;
    }
}
