.amcham-plugin-mixed-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
    /* Ensure navigation buttons outside don't cause scroll or fit inside padding */
}

/* Ensure wrapper overflow is visible for buttons if they are outside, 
   but Swiper container needs hidden overflow. */
.amcham-plugin-mixed-carousel-wrapper {
    overflow: visible;
}

#amcham-plugin-mixed-carousel {
    overflow: hidden;
    padding-bottom: 20px;
    /* Reduced vertical padding */
    padding-top: 10px;
    height: 100%;
}

.swiper-wrapper {
    align-items: stretch;
    /* Ensure slides stretch to same height */
}

.amcham-plugin-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    min-height: 100%;
    /* Stretch in slide */
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amcham-plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.amcham-plugin-card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.amcham-plugin-card-image img {
    width: 100%;
    height: 250px;
    /* Adjusted height for consistency */
    display: block;
    object-fit: cover;
    /* Cover to fill area */
    object-position: top center;
    /* Focus on top if cropped */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* If images are portraits (magazines), contain might be better, but cover looks 'fuller'. 
   User said "occupy more part". Cover does that. */

.amcham-plugin-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.amcham-plugin-card-content h3 {
    font-size: 20px;
    color: #004687;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
}

.amcham-plugin-edition {
    font-size: 15px;
    color: #8c8c8c;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.amcham-plugin-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #004687;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    margin-top: auto;
    padding: 8px 20px;
    border: 2px solid #004687;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: fit-content;
    align-self: center;
}

.amcham-plugin-card-link:hover {
    background: #004687;
    color: #fff;
}

.amcham-plugin-card-link:hover svg {
    fill: #fff;
}

.amcham-plugin-card-source-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    background: #004687;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
/* Navigation Buttons */
.amcham-plugin-button-prev,
.amcham-plugin-button-next {
    position: absolute;
    top: auto;
    /* Remove top centering */
    bottom: 40px;
    transform: none;
    /* Remove transform */
    width: 35px;
    /* Smaller size */
    height: 35px;
    /* Smaller size */
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.amcham-plugin-button-prev:hover,
.amcham-plugin-button-next:hover {
    background: #004687;
    border-color: #004687;
}

.amcham-plugin-button-prev:hover svg path,
.amcham-plugin-button-next:hover svg path {
    stroke: #fff;
}

/* Adjust svg size inside button */
.amcham-plugin-button-prev svg,
.amcham-plugin-button-next svg {
    width: 20px;
    height: 20px;
}

.amcham-plugin-button-prev {
    left: calc(50% - 40px);
    /* Center relative to container */
    right: auto;
}

.amcham-plugin-button-next {
    right: calc(50% - 40px);
    /* Center relative to container */
    left: auto;
}

@media (max-width: 768px) {
    .amcham-plugin-card-image img {
        height: 200px;
        /* Smaller for mobile */
    }

    /* Keep arrows at bottom for mobile too or adjust if crowded - slightly wider gap for touch */
    .amcham-plugin-button-prev {
        left: calc(50% - 60px);
    }

    .amcham-plugin-button-next {
        right: calc(50% - 60px);
    }
}