.afs-25860-container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.afs-25860-reverse {
    flex-direction: row-reverse;
}

.afs-25860-text-col,
.afs-25860-img-col {
    flex: 1;
    min-width: 0; /* Prevents flex flex-blowouts */
}

/* Typography */
.afs-25860-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.afs-25860-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Bullets */
.afs-25860-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.afs-25860-bullet {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.afs-25860-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #2053AF; /* Fallback to primary from context */
    font-size: 1.2em;
}

.afs-25860-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.afs-25860-bullet-text {
    font-size: 1.05em;
    font-weight: 500;
    color: #333;
}

/* Image */
.afs-25860-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.afs-25860-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Animations */
.afs-25860-content-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.afs-25860-image-wrapper {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.afs-25860-container.is-visible .afs-25860-content-wrap {
    opacity: 1;
    transform: translateY(0);
}

.afs-25860-container.is-visible .afs-25860-image-wrapper {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .afs-25860-container,
    .afs-25860-reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .afs-25860-title {
        font-size: 2em;
    }
}
