/* ============================================================
   CROX THEME — MAIN CSS v2.0
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #e63946;
    --dark: #141414;
    --dark2: #1a1a1a;
    --dark3: #1e1e1e;
    --dark4: #222;
    --dark5: #252525;
    --border: #2a2a2a;
    --text: #e0e0e0;
    --text-muted: #888;
    --text-dim: #555;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.crox-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}


/* ============================================================
   DESKTOP HEADER
   ============================================================ */

.crox-header-desktop {
    background: #111;
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.crox-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 60px;
}

.crox-logo-wrap {
    flex-shrink: 0;
}

.crox-logo {
    height: 42px;
    width: auto;
}

.crox-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
}


/* Nav */

.crox-nav {
    flex: 1;
}

.crox-nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.crox-nav-menu li {
    position: relative;
}

.crox-nav-menu > li > a {
    display: block;
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 20px 14px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.crox-nav-menu > li > a:hover,
.crox-nav-menu > li.current-menu-item > a,
.crox-nav-menu > li.current-menu-ancestor > a {
    color: #fff;
    border-bottom-color: var(--red);
}

.crox-nav-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 0.5px solid var(--border);
    min-width: 190px;
    z-index: 999;
    list-style: none;
}

.crox-nav-menu li:hover ul {
    display: block;
}

.crox-nav-menu li ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #bbb;
    border-bottom: 0.5px solid var(--border);
    transition: color 0.2s, background 0.2s;
}

.crox-nav-menu li ul li a:hover {
    color: #fff;
    background: #1a1a1a;
}


/* Search */

.crox-header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crox-search-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 8px;
    display: flex;
}

.crox-search-btn:hover {
    color: #fff;
}

.crox-search-bar {
    display: none;
    background: #111;
    border-top: 0.5px solid var(--border);
}

.crox-search-bar.open {
    display: block;
}

.crox-search-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.crox-search-inner input[type="search"] {
    flex: 1;
    background: #1a1a1a;
    border: 0.5px solid #333;
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
}

.crox-search-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 22px;
    cursor: pointer;
}


/* ============================================================
   BREAKING TICKER
   ============================================================ */

.crox-ticker {
    display: flex;
    align-items: center;
    background: #0d0d0d;
    border-top: 0.5px solid var(--border);
    overflow: hidden;
}

.crox-ticker-tag {
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.crox-ticker-wrap {
    flex: 1;
    overflow: hidden;
}

.crox-ticker-inner {
    display: flex;
    animation: ticker-scroll 50s linear infinite;
    white-space: nowrap;
}

.crox-ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.crox-ticker-item {
    font-size: 12px;
    color: #888;
    padding: 8px 28px 8px 0;
    flex-shrink: 0;
}

.crox-ticker-item a {
    color: #888;
    transition: color 0.2s;
}

.crox-ticker-item a:hover {
    color: #fff;
}

.crox-ticker-dot {
    color: var(--red);
    margin-right: 8px;
    font-size: 8px;
}

.crox-ticker-time {
    font-size: 11px;
    color: #333;
    padding: 8px 14px;
    flex-shrink: 0;
    border-left: 0.5px solid var(--border);
    white-space: nowrap;
}


/* ============================================================
   HOMEPAGE HERO
   ============================================================ */

.crox-hero {
    display: grid;
    grid-template-columns: 1fr 320px;
    height: 460px;
    gap: 3px;
    background: #0d0d0d;
}

.crox-hero-main {
    position: relative;
    overflow: hidden;
    display: block;
    background: #1a1a1a;
    height: 100%;
}

.crox-hero-main img,
.crox-hero-sm img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.2) 55%,
        transparent 100%
    );
    z-index: 1;
}

.crox-hero-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px 24px 24px;
    z-index: 2;
}

.crox-hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.crox-hero-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.crox-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.crox-hero-meta {
    font-size: 11px;
    color: rgba(255,255,255,.45);
}

.crox-hero-side {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 100%;
}

.crox-hero-sm {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: block;
    background: var(--dark3);
    min-height: 0;
    height: 0;
}

.crox-hero-sm-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 30%,
        rgba(0,0,0,.88)
    );
    z-index: 1;
}

.crox-hero-sm-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 14px;
    z-index: 2;
}

.crox-hero-sm-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.crox-hero-sm-cat a {
    color: var(--red);
}

.crox-hero-sm-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}


/* ============================================================
   HOMEPAGE INNER
   ============================================================ */

.crox-hp-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.crox-hp-sec {
    padding-top: 32px;
}

.crox-hp-div {
    border: none;
    border-top: 0.5px solid #1e1e1e;
    margin-top: 32px;
}


/* Section header */

.crox-sec-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 0.5px solid var(--border);
}

.crox-sec-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
}

.crox-sec-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
}

.crox-sec-more {
    font-size: 11px;
    color: var(--text-dim);
    transition: color 0.2s;
}

.crox-sec-more:hover {
    color: var(--red);
}


/* No image fallback */

.crox-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #1e1e1e,
        #252525
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.crox-no-img span {
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* Fit image */

.crox-fit {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   VIJESTI SECTION
   ============================================================ */

.crox-vij-wrap {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
}

.crox-vij-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.crox-card {
    background: var(--dark3);
    border-radius: 8px;
    overflow: hidden;
    display: block;
    transition: opacity 0.2s;
}

.crox-card:hover {
    opacity: 0.88;
}

.crox-card-img {
    width: 100%;
    height: 165px;
    min-height: 165px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-card-body {
    padding: 12px;
}

.crox-card-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.crox-card-cat a {
    color: var(--red);
}

.crox-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.35;
    margin-bottom: 5px;
}

.crox-card-meta {
    font-size: 10px;
    color: var(--text-dim);
}


/* Najnovije */

.crox-latest {
}

.crox-latest-hd {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: block;
    margin-bottom: 2px;
}

.crox-latest-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 0.5px solid #1a1a1a;
    align-items: flex-start;
}

.crox-latest-item:last-child {
    border-bottom: none;
}

.crox-latest-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.crox-latest-body {
    flex: 1;
    min-width: 0;
}

.crox-latest-title {
    font-size: 12px;
    color: #bbb;
    line-height: 1.35;
    display: block;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.crox-latest-item:hover .crox-latest-title {
    color: #fff;
}

.crox-latest-time {
    font-size: 10px;
    color: #444;
}


/* ============================================================
   POLITIKA SECTION
   ============================================================ */

.crox-pol-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
}

.crox-pol-main {
    display: block;
    background: var(--dark3);
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.2s;
}

.crox-pol-main:hover {
    opacity: 0.88;
}

.crox-pol-main-img {
    position: relative;
    width: 100%;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-pol-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-pol-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.crox-pol-badge a {
    color: #fff;
}

.crox-pol-main-body {
    padding: 16px;
}

.crox-pol-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.crox-pol-main-exc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.crox-pol-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crox-pol-li {
    background: var(--dark3);
    border-radius: 7px;
    display: flex;
    gap: 12px;
    padding: 10px;
    align-items: flex-start;
    transition: background 0.2s;
}

.crox-pol-li:hover {
    background: var(--dark5);
}

.crox-pol-li-img {
    width: 82px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-pol-li-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-pol-li-body {
    flex: 1;
    min-width: 0;
}

.crox-pol-li-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.crox-pol-li-cat a {
    color: var(--red);
}

.crox-pol-li-title {
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.3;
}

.crox-pol-li-time {
    font-size: 10px;
    color: #444;
    margin-top: 3px;
    display: block;
}


/* ============================================================
   SPORT SECTION
   ============================================================ */

.crox-sport-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
}

.crox-sport-main {
    background: var(--dark3);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: opacity 0.2s;
}

.crox-sport-main:hover {
    opacity: 0.88;
}

.crox-sport-main-img {
    overflow: hidden;
    background: var(--dark5);
    min-height: 220px;
    height: 100%;
}

.crox-sport-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-sport-main-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.crox-sport-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.crox-sport-cat a {
    color: var(--red);
}

.crox-sport-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    flex: 1;
}

.crox-sport-meta {
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 10px;
    display: block;
}

.crox-sport-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crox-sport-li {
    background: var(--dark3);
    border-radius: 7px;
    display: flex;
    gap: 12px;
    padding: 10px;
    align-items: flex-start;
    transition: background 0.2s;
}

.crox-sport-li:hover {
    background: var(--dark5);
}

.crox-sport-li-img {
    width: 82px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-sport-li-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-sport-li-body {
    flex: 1;
    min-width: 0;
}

.crox-sport-li-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.crox-sport-li-cat a {
    color: var(--red);
}

.crox-sport-li-title {
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.3;
}


/* ============================================================
   BIZNIS SECTION
   ============================================================ */

.crox-biz-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.crox-biz-col {
    min-width: 0;
}

.crox-biz-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 0.5px solid #1a1a1a;
    min-width: 0;
    transition: opacity 0.2s;
}

.crox-biz-item:hover {
    opacity: 0.8;
}

.crox-biz-num {
    font-size: 28px;
    font-weight: 900;
    color: #2a2a2a;
    width: 36px;
    flex-shrink: 0;
    line-height: 1;
}

.crox-biz-body {
    flex: 1;
    min-width: 0;
}

.crox-biz-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crox-biz-cat a {
    color: var(--red);
}

.crox-biz-title {
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crox-biz-thumb {
    width: 64px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-biz-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ============================================================
   CRNA HRONIKA SECTION
   ============================================================ */

.crox-ch-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.crox-ch-main {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 300px;
    min-height: 300px;
    background: var(--dark5);
    transition: opacity 0.2s;
}

.crox-ch-main:hover {
    opacity: 0.88;
}

.crox-ch-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-ch-main-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 20%,
        rgba(0,0,0,.92)
    );
    z-index: 1;
}

.crox-ch-main-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 20px 20px;
    z-index: 2;
}

.crox-ch-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.crox-ch-bar {
    width: 14px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.crox-ch-label span {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.crox-ch-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.crox-ch-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crox-ch-li {
    background: var(--dark3);
    border-radius: 7px;
    display: flex;
    gap: 12px;
    padding: 10px;
    align-items: flex-start;
    transition: background 0.2s;
}

.crox-ch-li:hover {
    background: var(--dark5);
}

.crox-ch-li-img {
    width: 82px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-ch-li-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-ch-li-body {
    flex: 1;
    min-width: 0;
}

.crox-ch-li-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.crox-ch-li-cat a {
    color: var(--red);
}

.crox-ch-li-title {
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.3;
}

.crox-ch-li-time {
    font-size: 10px;
    color: #444;
    margin-top: 3px;
    display: block;
}


/* ============================================================
   MAGAZIN SECTION
   ============================================================ */

.crox-mag-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
}

.crox-mag-main {
    display: block;
    background: var(--dark3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.crox-mag-main:hover {
    opacity: 0.88;
}

.crox-mag-main-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-mag-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-mag-main-body {
    padding: 16px;
}

.crox-mag-main-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.crox-mag-main-cat a {
    color: var(--red);
}

.crox-mag-main-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.crox-mag-main-exc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.crox-mag-list {
    display: flex;
    flex-direction: column;
}

.crox-mag-li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 0.5px solid var(--border);
    align-items: flex-start;
    transition: opacity 0.2s;
}

.crox-mag-li:last-child {
    border-bottom: none;
}

.crox-mag-li:hover {
    opacity: 0.8;
}

.crox-mag-li-img {
    width: 82px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-mag-li-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-mag-li-body {
    flex: 1;
    min-width: 0;
}

.crox-mag-li-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.crox-mag-li-cat a {
    color: var(--red);
}

.crox-mag-li-title {
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
    line-height: 1.3;
}

.crox-mag-li-time {
    font-size: 10px;
    color: #444;
    margin-top: 3px;
    display: block;
}

.crox-mag-sidebar {
}


/* ============================================================
   BOT3 — DIJASPORA / ZDRAVLJE / RECEPTI
   ============================================================ */

.crox-bot3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-bottom: 40px;
}

.crox-bot3-main {
    display: block;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}

.crox-bot3-main:hover {
    opacity: 0.88;
}

.crox-bot3-main-img {
    position: relative;
    height: 165px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark5);
}

.crox-bot3-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-bot3-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 25%,
        rgba(0,0,0,.88)
    );
    z-index: 1;
}

.crox-bot3-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 2;
}

.crox-bot3-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.crox-bot3-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.crox-bot3-list {
    background: var(--dark3);
    border-radius: 7px;
    overflow: hidden;
}

.crox-bot3-li {
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 0.5px solid var(--dark5);
    align-items: flex-start;
    transition: background 0.2s;
}

.crox-bot3-li:last-child {
    border-bottom: none;
}

.crox-bot3-li:hover {
    background: var(--dark5);
}

.crox-bot3-arr {
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1.3;
}

.crox-bot3-text {
    font-size: 12px;
    color: #999;
    line-height: 1.35;
    min-width: 0;
    transition: color 0.2s;
}

.crox-bot3-li:hover .crox-bot3-text {
    color: #fff;
}


/* ============================================================
   SINGLE POST
   ============================================================ */

.crox-single-wrap {
    padding: 32px 0 60px;
}

.crox-single-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
}

.crox-article-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.crox-article-cat a {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(230,57,70,0.1);
    padding: 3px 10px;
    border-radius: 2px;
}

.crox-article-time {
    font-size: 12px;
    color: var(--text-dim);
}

.crox-article-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.crox-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--border);
    flex-wrap: wrap;
}

.crox-article-author,
.crox-article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.crox-article-thumb {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
}

.crox-article-img {
    width: 100%;
    height: auto;
}

.crox-article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #f0f0f0;
}

.crox-article-content p {
    margin-bottom: 20px;
}

.crox-article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 16px;
}

.crox-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 14px;
}

.crox-article-content img {
    border-radius: 6px;
    margin: 20px 0;
}

.crox-article-content a {
    color: var(--red);
}

.crox-article-content blockquote {
    border-left: 4px solid var(--red);
    padding: 14px 20px;
    background: var(--dark4);
    margin: 24px 0;
    border-radius: 0 4px 4px 0;
}

.crox-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 0.5px solid var(--border);
}

.crox-tag {
    font-size: 12px;
    color: #aaa;
    background: var(--dark4);
    border: 0.5px solid #333;
    padding: 4px 12px;
    border-radius: 20px;
    transition: color 0.2s, border-color 0.2s;
}

.crox-tag:hover {
    color: #fff;
    border-color: #555;
}


/* ============================================================
   SHARE
   ============================================================ */

.crox-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.crox-share-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.crox-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.crox-share-btn:hover {
    opacity: 0.85;
}

.crox-share-fb {
    background: #1877F2;
    color: #fff;
}

.crox-share-tw {
    background: #000;
    color: #fff;
    border: 0.5px solid #333;
}

.crox-share-copy {
    background: var(--dark4);
    color: #fff;
    border: 0.5px solid #333;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.crox-sidebar-widget {
    background: var(--dark4);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.crox-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 14px;
    border-bottom: 2px solid var(--red);
}

.crox-sidebar-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 0.5px solid var(--border);
    transition: background 0.2s;
}

.crox-sidebar-item:last-child {
    border-bottom: none;
}

.crox-sidebar-item:hover {
    background: var(--dark5);
}

.crox-sidebar-item-img {
    width: 72px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--dark5);
    overflow: hidden;
}

.crox-sidebar-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-sidebar-item-body {
    flex: 1;
    min-width: 0;
}

.crox-sidebar-item-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.crox-sidebar-item-cat a {
    color: var(--red);
}

.crox-sidebar-item-title {
    font-size: 12px;
    font-weight: 500;
    color: #ccc;
    line-height: 1.35;
    margin-bottom: 3px;
}

.crox-sidebar-item-time {
    font-size: 10px;
    color: var(--text-dim);
}


/* ============================================================
   FACEBOOK BOX
   ============================================================ */

.crox-facebook-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #1a1f2e;
    border: 0.5px solid #1877F2;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.crox-facebook-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crox-facebook-icon {
    width: 40px;
    height: 40px;
    background: #1877F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.crox-facebook-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.crox-facebook-text p {
    font-size: 12px;
    color: #aaa;
}

.crox-facebook-btn {
    background: #1877F2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

.crox-facebook-btn:hover {
    background: #1565c0;
}


/* ============================================================
   ARCHIVE
   ============================================================ */

.crox-archive-wrap {
    padding: 32px 0 60px;
}

.crox-archive-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--border);
}

.crox-archive-cat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.crox-archive-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.crox-archive-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.crox-archive-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.crox-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.crox-arc-card {
    background: var(--dark4);
    border-radius: 8px;
    overflow: hidden;
    display: block;
    transition: opacity 0.2s;
}

.crox-arc-card:hover {
    opacity: 0.88;
}

.crox-arc-card-img {
    width: 100%;
    height: 180px;
    background: var(--dark5);
    overflow: hidden;
}

.crox-arc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crox-arc-card-body {
    padding: 14px;
}

.crox-arc-card-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.crox-arc-card-cat a {
    color: var(--red);
}

.crox-arc-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.3;
    margin-bottom: 8px;
}

.crox-arc-card-excerpt {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 8px;
}

.crox-arc-card-meta {
    font-size: 11px;
    color: var(--text-dim);
}

.crox-no-posts {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}


/* ============================================================
   PAGINATION
   ============================================================ */

.crox-pagination {
    margin-top: 32px;
}

.crox-pagination ul {
    list-style: none;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.crox-pagination ul li a,
.crox-pagination ul li span {
    display: block;
    padding: 8px 14px;
    background: var(--dark4);
    color: #bbb;
    border-radius: 4px;
    font-size: 13px;
    border: 0.5px solid var(--border);
    transition: background 0.2s;
}

.crox-pagination ul li span.current {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.crox-pagination ul li a:hover {
    background: var(--dark5);
    color: #fff;
}


/* ============================================================
   SCROLL TO TOP
   ============================================================ */

#scroll-up {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(230,57,70,.4);
    transition: background 0.3s;
}

#scroll-up:hover {
    background: #c0303b;
}

#scroll-up svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}


/* ============================================================
   MOBILNA VERZIJA
   ============================================================ */

@media (max-width: 768px) {

    .crox-header-desktop {
        display: none;
    }

    /* Hero */

    .crox-hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .crox-hero-main {
        min-height: 240px;
    }

    .crox-hero-title {
        font-size: 20px;
    }

    .crox-hero-side {
        flex-direction: row;
    }

    .crox-hero-sm {
        min-height: 130px;
    }

    .crox-hero-sm-title {
        font-size: 11px;
    }


    /* Inner */

    .crox-hp-inner {
        padding: 0 12px;
    }


    /* Vijesti cards — horizontalni scroll */

    .crox-vij-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .crox-vij-cards {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 10px;
        padding-bottom: 4px;
    }

    .crox-vij-cards::-webkit-scrollbar {
        display: none;
    }

    .crox-card {
        min-width: 160px;
        flex-shrink: 0;
    }

    .crox-card-img {
        height: 110px;
    }


    /* Politika */

    .crox-pol-wrap {
        grid-template-columns: 1fr;
    }

    .crox-pol-main {
        display: none;
    }


    /* Biznis */

    .crox-biz-wrap {
        grid-template-columns: 1fr;
    }

    .crox-biz-thumb {
        display: none;
    }


    /* Sport */

    .crox-sport-wrap {
        grid-template-columns: 1fr;
    }

    .crox-sport-main {
        grid-template-columns: 1fr;
    }

    .crox-sport-main-img {
        min-height: 170px;
    }


    /* Crna hronika */

    .crox-ch-wrap {
        grid-template-columns: 1fr;
    }

    .crox-ch-main {
        height: 220px;
    }


    /* Magazin */

    .crox-mag-wrap {
        grid-template-columns: 1fr;
    }

    .crox-mag-sidebar {
        display: none;
    }


    /* Bot3 */

    .crox-bot3 {
        grid-template-columns: 1fr;
    }


    /* Single */

    .crox-single-grid {
        grid-template-columns: 1fr;
    }

    .crox-single-sidebar {
        display: none;
    }

    .crox-article-title {
        font-size: 22px;
    }

    .crox-article-content {
        font-size: 16px;
    }


    /* Archive */

    .crox-archive-grid-wrap {
        grid-template-columns: 1fr;
    }

    .crox-archive-sidebar {
        display: none;
    }

    .crox-archive-grid {
        grid-template-columns: 1fr;
    }
}