/* Base Wrapper */
.acs-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.acs-slide-item {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
}

.acs-slide-heading a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.acs-read-more {
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* ==================
   SKIN: OVERLAY
   ================== */
.acs-skin-overlay .acs-slide-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Content at bottom */
    padding: 0;
}

.acs-skin-overlay .acs-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.acs-skin-overlay .acs-slide-item:hover .acs-slide-bg {
    transform: scale(1.05);
}

.acs-skin-overlay .acs-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.acs-skin-overlay .acs-slide-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.acs-skin-overlay .acs-slide-heading {
    font-size: 2rem;
    color: #fff;
    margin: 10px 0;
}

.acs-skin-overlay .acs-slide-meta,
.acs-skin-overlay .acs-slide-excerpt {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================
   SKIN: CARD
   ================== */
.acs-skin-card .acs-slide-item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    /* Spacing for shadow */
    height: calc(100% - 30px) !important;
    /* Adjust for margin */
}

.acs-skin-card .acs-slide-image {
    width: 100%;
    height: 250px;
    /* Default Card Image Height */
    background-size: cover;
    background-position: center;
    position: relative;
}

.acs-skin-card .acs-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.acs-skin-card .acs-slide-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acs-skin-card .acs-slide-heading {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.acs-skin-card .acs-slide-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: auto;
    /* Push read more down */
}

.acs-skin-card .acs-read-more {
    color: #61ce70;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ==================
   SKIN: CLASSIC
   ================== */
.acs-skin-classic .acs-slide-item {
    display: flex;
    height: auto !important;
    min-height: 400px;
}

.acs-skin-classic .acs-slide-inner-flex {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.acs-skin-classic .acs-slide-image-col {
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.acs-skin-classic .acs-slide-content-col {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .acs-skin-classic .acs-slide-inner-flex {
        flex-direction: column;
    }

    .acs-skin-classic .acs-slide-image-col,
    .acs-skin-classic .acs-slide-content-col {
        width: 100%;
    }

    .acs-skin-classic .acs-slide-image-col {
        height: 250px;
    }
}

/* Common Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.acs-skin-card .swiper-button-next,
.acs-skin-card .swiper-button-prev {
    color: #333;
    /* Dark arrows for card skin usually on white bg context */
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.acs-skin-card .swiper-button-next:after,
.acs-skin-card .swiper-button-prev:after {
    font-size: 18px;
}