.mk-brand-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 60px;
}

.mk-brand-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.mk-brand-row.mk-no-border {
    border-bottom: none;
}

.mk-brand-row.is-single {
    grid-template-columns: 1fr;
}

.mk-brand-row.is-reverse .mk-brand-images {
    order: 1;
}

.mk-brand-row.is-reverse .mk-brand-info {
    order: 2;
}

.mk-brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.mk-brand-logo {
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
}

.mk-brand-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a1a1a;
}

.mk-brand-logo img {
    max-width: 280px;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mk-brand-logo:hover img {
    transform: scale(1.03);
}

.mk-brand-logo h2,
.mk-brand-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mk-brand-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.mk-brand-info p + p {
    margin-top: 16px;
}

.mk-brand-info ul {
    list-style: disc;
    padding-left: 20px;
    margin: 12px 0 8px;
    color: #555;
}

.mk-brand-info li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.mk-brand-images {
    position: relative;
    display: block;
}

.mk-photo-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    grid-template-rows: 400px;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.mk-carousel-container {
    grid-column: 2;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    height: 100%;
    width: 100%;
}

.mk-carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mk-carousel-image,
.mk-carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: zoom-in;
}

.mk-carousel-image.is-active,
.mk-carousel-video.is-active {
    opacity: 1;
    z-index: 1;
}

.mk-carousel-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.mk-carousel-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    z-index: 2;
}

.mk-carousel-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.mk-carousel-dots {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
    grid-column: 1 / -1;
    justify-content: center;
    z-index: 2;
}

.mk-carousel-dot {
    width: 4px;
    height: 12px;
    border-radius: 0;
    background: #c8c8c8;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
}

.mk-carousel-dot.is-active {
    background: #000;
}

.mk-carousel-dot:hover {
    background: #888;
}

.mk-brand-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 1400px) {
    .mk-brand-section {
        padding: 60px 40px;
    }
    .mk-brand-row {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .mk-brand-row {
        gap: 40px;
    }
    .mk-photo-carousel {
        grid-template-rows: 350px;
    }
    .mk-brand-logo img {
        max-width: 240px;
        max-height: 130px;
    }
    .mk-brand-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mk-brand-section {
        padding: 40px 20px;
    }
    .mk-brand-row {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 30px;
    }
    .mk-brand-row.is-reverse .mk-brand-images {
        order: 2;
    }
    .mk-brand-row.is-reverse .mk-brand-info {
        order: 1;
    }
    .mk-brand-info {
        padding: 0;
        text-align: center;
    }
    .mk-brand-logo {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mk-brand-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .mk-brand-logo img {
        max-width: 220px;
        margin: 0 auto;
    }
    .mk-photo-carousel {
        grid-template-rows: 300px;
    }
}

@media (max-width: 480px) {
    .mk-brand-logo img {
        max-width: 180px;
    }
    .mk-brand-info p {
        font-size: 0.95rem;
    }
    .mk-photo-carousel {
        grid-template-rows: 250px;
    }
}
