.scm-section {
    padding: 60px 0;
    overflow: hidden;
    /* For slider overflow safety */
}

.scm-card {
    position: relative;
    /* height: 450px; Remove fixed height */
    aspect-ratio: 3 / 4;
    /* Modern vertical proportion */
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Background Image */
.scm-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.scm-card:hover .scm-bg-image {
    transform: scale(1.1);
}

/* Overlay Gradient */
.scm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Content */
.scm-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: var(--bs-white);
}

/* Icon */
.scm-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--theme-accent);
    /* Default Yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scm-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0);
    /* Make black if using colored icons, or remove if using svgs explicitly */
}

/* Typography */
.scm-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.scm-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More */
.scm-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: capitalize;
    transition: gap 0.3s ease;
}

.scm-card:hover .scm-read-more {
    gap: 12px;
}

.scm-arrow {
    width: 12px;
    height: 12px;
    fill: currentColor;
}