/* Wrapper */
.sp-429-wrapper {
    width: 100%;
}

/* Header */
.sp-429-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.sp-429-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #111;
    margin-bottom: 15px;
    margin-top: 0;
}

.sp-429-separator {
    width: 60px;
    height: 3px;
    background-color: #F4C268; /* Default Yellow */
    margin: 0 auto 20px auto;
}

.sp-429-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Grid */
.sp-429-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.sp-429-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Subtle shadow if needed, but screenshot shows a flat look mostly on the white box */
}

.sp-429-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3; /* Adjust based on exact needed ratio */
    overflow: hidden;
}

.sp-429-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge */
.sp-429-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #83361F; /* Default Brown */
    color: #fff;
    padding: 10px 24px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    z-index: 2;
}

/* Content Box Below Image */
.sp-429-card-content {
    background-color: #fff;
    width: 100%;
    min-height: 120px; /* Gives the white space shown in screenshot */
    padding: 20px;
}

.sp-429-card-inner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #111;
}

.sp-429-card-inner-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .sp-429-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sp-429-title {
        font-size: 32px;
    }
    
    .sp-429-grid {
        grid-template-columns: 1fr;
    }
}