/* ============================================================
   HOMEPAGE EXTENDED SECTIONS — MK Europe
   ============================================================ */

/* ============================================================
   OPŠTE SEKCIJE
   ============================================================ */
.hp-section {
    padding: 36px 0 40px;
}

.hp-section--gray {
    background-color: #f4f4f4;
}

/* ============================================================
   SEKCIJA: ISTAKNUTO (1 veliki levo + 3 slagalica desno)
   ============================================================ */
.istaknuto-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

.istaknuto-main {
    display: flex;
    flex-direction: column;
}

.istaknuto-img-wrap {
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}

.istaknuto-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.istaknuto-main:hover .istaknuto-img-wrap img {
    transform: scale(1.03);
}

.istaknuto-main-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.22;
    margin: 8px 0 10px;
}

.istaknuto-main-title a {
    color: #121D3D;
}

.istaknuto-main-title a:hover {
    color: #C8272F;
}

.istaknuto-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Slagalica desno — 3 posta */
.istaknuto-stack {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #121D3D;
    padding-left: 20px;
}

.istaknuto-stack-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.stack-img {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    width: 110px;
    height: 80px;
}

.stack-img img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.istaknuto-stack-item:hover .stack-img img {
    transform: scale(1.05);
}

.stack-body {
    flex: 1;
    min-width: 0;
}

.stack-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.3;
    margin: 4px 0 6px;
}

.stack-title a {
    color: #121D3D;
}

.stack-title a:hover {
    color: #C8272F;
}

/* ============================================================
   SEKCIJA: RUBRIKE (3 kolone po kategoriji)
   ============================================================ */
.rubrike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rubrika-col {
    display: flex;
    flex-direction: column;
}

.rubrika-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 3px solid #121D3D;
}

.rubrika-header h2 {
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #121D3D;
    margin: 0;
}

.rubrika-header h2 a {
    color: #121D3D;
}

.rubrika-header h2 a:hover {
    color: #C8272F;
}

.rubrika-all {
    font-family: 'Arial', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #C8272F;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}

.rubrika-all:hover {
    color: #121D3D;
}

.rubrika-main-post {
    margin-bottom: 16px;
}

.rubrika-main-post img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.rubrika-main-post:hover img {
    opacity: 0.88;
}

.rubrika-main-title {
    font-size: 1rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.3;
    margin-bottom: 4px;
}

.rubrika-main-title a {
    color: #121D3D;
}

.rubrika-main-title a:hover {
    color: #C8272F;
}

.rubrika-small-post {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-top: 1px solid #e5e5e5;
}

.rsm-img {
    flex-shrink: 0;
    display: block;
    width: 80px;
    height: 60px;
    overflow: hidden;
}

.rsm-img img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.rubrika-small-post:hover .rsm-img img {
    opacity: 0.85;
}

.rsm-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.rsm-title a {
    color: #121D3D;
}

.rsm-title a:hover {
    color: #C8272F;
}

/* ============================================================
   SEKCIJA: DARK BANNER (tamna pozadina, 2 horizontalna)
   ============================================================ */
#section-dark-banner {
    padding: 0;
}

.dark-banner-inner {
    background-color: #121D3D;
    padding: 44px 0;
    position: relative;
    overflow: hidden;
}

.dark-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 14px
    );
    pointer-events: none;
}

.dark-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.dark-banner-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dark-banner-img {
    position: relative;
    overflow: hidden;
}

.dark-banner-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.3s;
    filter: brightness(0.82);
}

.dark-banner-card:hover .dark-banner-img img {
    transform: scale(1.04);
    filter: brightness(0.75);
}

.dark-banner-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(18,29,61,0.7), transparent);
}

.dark-banner-body {
    padding: 0 4px;
}

.dark-cat {
    display: inline-block;
    background-color: #C8272F;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dark-cat:hover {
    background-color: #a01f27;
    color: #fff;
}

.dark-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 10px;
}

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

.dark-title a:hover {
    color: #C49344;
}

.dark-excerpt {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 14px;
}

.dark-read-more {
    display: inline-block;
    color: #C49344;
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(196,147,68,0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.dark-read-more:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   SEKCIJA: MAGAZINSKI RED (2 velika horizontalna)
   ============================================================ */
.magazin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.magazin-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.25s;
}

.magazin-card:hover {
    box-shadow: 0 6px 24px rgba(18,29,61,0.10);
}

.magazin-img-wrap {
    overflow: hidden;
}

.magazin-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.magazin-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.magazin-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.25;
    margin: 8px 0 10px;
}

.magazin-title a {
    color: #121D3D;
}

.magazin-title a:hover {
    color: #C8272F;
}

.magazin-excerpt {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.magazin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.magazin-link {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #C8272F;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.magazin-link:hover {
    color: #121D3D;
}

/* ============================================================
   SEKCIJA: HORIZONTALNI LIST (thumbnail levo, 2 kolone)
   ============================================================ */
.hlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 36px;
}

.hlist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hlist-item:nth-child(1),
.hlist-item:nth-child(2) {
    border-top: 3px solid #121D3D;
}

.hlist-img {
    flex-shrink: 0;
    display: block;
    width: 120px;
    height: 88px;
    overflow: hidden;
}

.hlist-img img {
    width: 120px;
    height: 88px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.hlist-item:hover .hlist-img img {
    transform: scale(1.06);
}

.hlist-body {
    flex: 1;
    min-width: 0;
}

.hlist-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #121D3D;
    line-height: 1.3;
    margin: 4px 0 6px;
}

.hlist-title a {
    color: #121D3D;
}

.hlist-title a:hover {
    color: #C8272F;
}

.hlist-excerpt {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   AJAX PAGINACIJA — "Sve objave"
   ============================================================ */
.ajax-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    min-height: 52px;
    position: relative;
    transition: opacity 0.2s;
}

.ajax-pagination.ajax-loading {
    opacity: 0.4;
    pointer-events: none;
}

.ajax-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid #ddd;
    color: #121D3D;
    font-family: 'Arial', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.18s, color 0.18s, border-color 0.18s;
    user-select: none;
    line-height: 1;
}

.ajax-page-btn:hover:not(.current):not(:disabled) {
    background-color: #121D3D;
    border-color: #121D3D;
    color: #ffffff;
}

.ajax-page-btn.current {
    background-color: #C8272F;
    border-color: #C8272F;
    color: #ffffff;
    cursor: default;
}

.ajax-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ajax-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    color: #aaa;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    user-select: none;
}

/* Grid loader overlay */
#ajax-posts-grid {
    position: relative;
    transition: opacity 0.25s;
}

#ajax-posts-grid.ajax-loading {
    opacity: 0.35;
    pointer-events: none;
}

#ajax-posts-grid.ajax-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #e0e0e0;
    border-top-color: #121D3D;
    border-radius: 50%;
    animation: mkeurope-spin 0.7s linear infinite;
    z-index: 10;
}

@keyframes mkeurope-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .istaknuto-layout {
        grid-template-columns: 1fr 300px;
    }

    .rubrike-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .rubrike-grid > .rubrika-col:last-child {
        display: none;
    }

    .dark-banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .magazin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hlist-grid {
        grid-template-columns: 1fr;
    }

    .hlist-item:nth-child(2) {
        border-top: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    .hp-section {
        padding: 24px 0 28px;
    }

    /* Istaknuto */
    .istaknuto-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .istaknuto-img-wrap img {
        height: 240px;
    }

    .istaknuto-main-title {
        font-size: 1.2rem;
    }

    .istaknuto-stack {
        border-left: none;
        border-top: 3px solid #121D3D;
        padding-left: 0;
        padding-top: 14px;
    }

    /* Rubrike */
    .rubrike-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rubrike-grid > .rubrika-col:last-child {
        display: flex;
    }

    /* Dark banner */
    .dark-banner-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dark-banner-inner {
        padding: 30px 0;
    }

    .dark-banner-img img {
        height: 190px;
    }

    /* Magazin */
    .magazin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .magazin-img-wrap img {
        height: 210px;
    }

    /* H list */
    .hlist-grid {
        grid-template-columns: 1fr;
    }

    .hlist-item:nth-child(2) {
        border-top: none;
    }

    .hlist-img,
    .hlist-img img {
        width: 95px;
        height: 72px;
    }

    /* AJAX pagination */
    .ajax-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .istaknuto-img-wrap img {
        height: 200px;
    }

    .stack-img,
    .stack-img img {
        width: 85px;
        height: 65px;
    }

    .dark-title {
        font-size: 1.1rem;
    }

    .magazin-img-wrap img {
        height: 180px;
    }

    .hlist-item {
        flex-direction: column;
        gap: 10px;
    }

    .hlist-img,
    .hlist-img img {
        width: 100%;
        height: 160px;
    }

    .ajax-page-dots {
        display: none;
    }
}
