/* --- KONTEJNER --- */
.musashi-posts-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 45px 30px !important;
    justify-content: center !important;
    margin: 40px auto 0 auto !important;
}

/* Osnovna kartica (Zajedničko) */
.m-card {
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.m-image-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

.m-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* --- STIL 1: DEFAULT (421x320 slika, tekst ispod) --- */
.m-style-default .m-card {
    background: transparent !important;
    box-shadow: none !important;
    /* Brišemo senku za flat izgled */
    border: none !important;
    /* Brišemo border */
    height: auto !important;
}

.m-style-default .m-image-wrapper {
    height: 320px !important;
    margin-bottom: 15px !important;
}

.m-style-default .m-content {
    padding: 0 !important;
    /* Poravnato sa ivicom slike */
}

/* Meta: KATEGORIJA | DATUM */
.m-style-default .m-meta {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

.m-style-default .m-category {
    font-weight: 700 !important;
}

/* Naslov i strelica desno */
.m-style-default .m-title-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.m-style-default .m-title {
    font-family: serif !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: #222 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.m-style-default .m-arrow {
    display: inline-block !important;
    font-size: 22px !important;
    margin-left: 18px !important;
    transition: transform 0.3s ease !important;
}

.m-style-default .m-card:hover .m-arrow {
    transform: translateX(-8px) !important;
}

/* Sakrivamo crveni badge na Default-u jer imamo tekstualnu kategoriju */
.m-style-default .m-badge {
    display: none !important;
}

/* --- STIL 2: MASK (421x558, tekst preko slike) --- */
.m-style-mask .m-card {
    height: 558px !important;
    border-radius: 8px !important;
}

.m-style-mask .m-image-wrapper {
    height: 100% !important;
}

.m-style-mask .m-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 35px 25px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%) !important;
    z-index: 2 !important;
}

.m-style-mask .m-title {
    color: #fff !important;
    font-size: 24px !important;
    margin: 0 !important;
}

/* Sakrivamo meta podatke i strelicu na Mask stilu */
.m-style-mask .m-meta,
.m-style-mask .m-arrow {
    display: none !important;
}

.m-style-mask .m-badge {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: rgba(139, 58, 46, 1) !important;
    color: #fff !important;
    padding: 5px 12px !important;
    font-size: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    z-index: 3 !important;
    border-radius: 75px !important;
}

/* --- ZAJEDNIČKI HOVER --- */
.m-card:hover .m-image-wrapper img {
    transform: scale(1.08) !important;
}

.m-link-overlay {
    position: absolute !important;
    /* inset: 0 !important; */
    top: 50px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 5 !important;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1300px) {
    .musashi-posts-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }

    .m-card {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .musashi-posts-container {
        grid-template-columns: 1fr !important;
    }

    .m-style-mask .m-card {
        height: 450px !important;
    }
}
