/* ============================================
   Featured Reflection – Elementor Widget
   ============================================ */

/* --- Wrapper (two-column grid) --- */
.fr-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.fr-wrapper > .fr-card,
.fr-wrapper > .fr-featured {
    flex: 1 1 0%;
    min-width: 300px;
}

/* --- Post Card (left column) --- */
.fr-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.fr-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.fr-card__image-link {
    display: block;
    text-decoration: none;
}

.fr-card__image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.fr-card:hover .fr-card__image {
    transform: scale(1.03);
}

.fr-card__image-link {
    overflow: hidden;
}

.fr-card__body {
    padding: 20px 24px 24px;
}

.fr-card__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a2a3a;
}

.fr-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fr-card__title a:hover {
    color: #1a8c8c;
}

.fr-card__link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1a8c8c;
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity 0.2s ease;
}

.fr-card__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.fr-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.fr-card__date svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* --- Featured Panel (right column) --- */
.fr-featured {
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
}

.fr-featured__inner {
    max-width: 500px;
}

/* Badge / Subtitle */
.fr-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1a8c8c;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.fr-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
}

/* Title */
.fr-featured__title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a2a3a;
    margin: 0 0 20px;
    font-family: Georgia, 'Times New Roman', serif;
}

.fr-featured__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fr-featured__title a:hover {
    color: #1a8c8c;
}

/* Excerpt */
.fr-featured__excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 30px;
}

/* CTA Button */
.fr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #1a8c8c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fr-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 140, 140, 0.35);
    color: #ffffff;
}

.fr-btn__icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .fr-wrapper {
        flex-direction: column;
    }

    .fr-wrapper > .fr-card,
    .fr-wrapper > .fr-featured {
        min-width: 100%;
    }

    .fr-featured {
        padding: 35px 25px;
    }

    .fr-featured__title {
        font-size: 28px;
    }

    .fr-card__image {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .fr-featured__title {
        font-size: 24px;
    }

    .fr-featured {
        padding: 28px 20px;
    }

    .fr-card__image {
        height: 250px;
    }

    .fr-btn {
        width: 100%;
        justify-content: center;
    }
}
