/* ==========================================================================
   Over Blue Bungalov Evleri - Custom Redesigned Home Page Sections (Tema4)
   Using Theme Variables: var(--Neon) [Sunset Gold], var(--Red) [Terracotta Wood],
                          var(--White) [Light Bg], var(--Gray) [Nature Gray],
                          var(--Title) [Dark Wood Text], var(--Paragraph) [Soft Text]
   ========================================================================== */

/* 1. Panoramic Nature Slider */
.bg-hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: #1b261e; /* Deep forest green base for overlays */
    overflow: hidden;
}
.bg-hero-slider {
    width: 100%;
    height: 100%;
}
.bg-hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #1b261e;
}
.bg-hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg-hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 10s ease;
}
.swiper-slide-active .bg-hero-slide-bg img {
    transform: scale(1.08);
}
.bg-hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(27, 38, 30, 0.4) 0%, rgba(27, 38, 30, 0.85) 100%);
}
.bg-hero-slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding-top: 80px;
}
.bg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 159, 28, 0.12);
    border: 1px dashed var(--Neon);
    color: var(--Neon);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-radius: 30px;
}
.bg-hero-badge::before {
    content: '🌿';
    font-size: 14px;
}
.bg-hero-slide-title {
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.bg-hero-slide-title span {
    color: var(--Neon);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
.bg-hero-slide-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: #f1f5f9;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 45px auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.bg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--Red);
    border: 2px solid var(--Red);
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 38px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(188, 57, 8, 0.2);
}
.bg-btn-primary:hover {
    background: transparent;
    color: var(--Red) !important;
    box-shadow: 0 10px 25px rgba(188, 57, 8, 0.45);
}
.bg-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 38px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s;
    text-decoration: none !important;
}
.bg-btn-secondary:hover {
    border-color: var(--Neon);
    color: var(--Neon) !important;
}

/* 2. Cozy About Section */
.bg-about-section {
    padding: 120px 0;
    background: var(--White);
    color: var(--Paragraph);
    position: relative;
}
.bg-about-title-tag {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--Red);
    display: block;
    margin-bottom: 15px;
}
.bg-about-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--Title);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}
.bg-about-heading span {
    color: var(--Neon);
    font-style: italic;
}
.bg-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--Paragraph);
    margin-bottom: 35px;
}
.bg-about-photo-grid {
    position: relative;
    height: 480px;
    width: 100%;
}
.bg-about-photo-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 6px solid var(--White);
}
.bg-about-photo-item.main {
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    z-index: 2;
}
.bg-about-photo-item.second {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}
.bg-about-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-about-badge {
    position: absolute;
    top: 40px;
    right: 10px;
    background: var(--Neon);
    color: var(--White);
    padding: 15px 25px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
}

/* 3. Horizontal Bungalow/Rooms Slider */
.bg-services-section {
    padding: 120px 0;
    background: var(--Gray);
    color: var(--Paragraph);
}
.bg-services-slider-container {
    position: relative;
}
.bg-room-card {
    background: var(--White);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bg-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.bg-room-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}
.bg-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.bg-room-card:hover .bg-room-img img {
    transform: scale(1.05);
}
.bg-room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--Red);
    color: var(--White);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.bg-room-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bg-room-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--Title);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.bg-room-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--Paragraph);
    margin-bottom: 25px;
    flex-grow: 1;
}
.bg-room-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}
.bg-room-amenity-item {
    font-size: 13px;
    color: var(--Paragraph);
    display: flex;
    align-items: center;
    gap: 6px;
}
.bg-room-amenity-item::before {
    content: '🌿';
    color: var(--Neon);
}
.bg-room-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid var(--Red);
    background: transparent;
    color: var(--Red) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s;
    margin-top: auto;
}
.bg-room-card:hover .bg-room-btn {
    background: var(--Red);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(188, 57, 8, 0.25);
}

/* 4. Why Choose Us Section - V2 (Fully Reimagined) */
.bg-choose-section {
    padding: 120px 0;
    background: var(--White);
    color: var(--Paragraph);
    position: relative;
}
.bg-choose-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1199px) {
    .bg-choose-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .bg-choose-grid-v2 {
        grid-template-columns: 1fr;
    }
}
.bg-choose-card-v2 {
    background: var(--Gray);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
}
.bg-choose-card-v2:hover {
    background: var(--White);
    border-color: var(--Neon);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 159, 28, 0.15);
}
.bg-choose-card-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--Neon);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.bg-choose-card-v2:hover::after {
    transform: scaleX(1);
}
.bg-choose-watermark {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 159, 28, 0.06);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}
.bg-choose-card-v2:hover .bg-choose-watermark {
    color: rgba(255, 159, 28, 0.12);
}
.bg-choose-icon-v2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--White);
    border: 2px solid var(--Neon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Red);
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 6px 15px rgba(255, 159, 28, 0.1);
    transition: all 0.4s;
}
.bg-choose-card-v2:hover .bg-choose-icon-v2 {
    background: var(--Neon);
    color: var(--White);
    transform: rotate(15deg);
}
.bg-choose-card-title-v2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--Title);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.bg-choose-card-text-v2 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--Paragraph);
    margin-bottom: 0;
}

/* 5. Cozy Fireplace / Funfact Section */
.bg-funfact-section {
    padding: 100px 0;
    background: var(--Gray);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.bg-funfact-box {
    background: var(--White);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}
.bg-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
@media (max-width: 767px) {
    .bg-fact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.bg-fact-num {
    font-size: 60px;
    font-weight: 800;
    color: var(--Red);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}
.bg-fact-lbl {
    font-size: 14px;
    font-weight: 700;
    color: var(--Paragraph);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 6. Team Section Styles */
.bg-team-section {
    padding: 120px 0;
    background: var(--White);
    color: var(--Paragraph);
}
.bg-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
@media (max-width: 767px) {
    .bg-team-grid {
        grid-template-columns: 1fr;
    }
}
.bg-team-card {
    background: var(--Gray);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}
.bg-team-card:hover {
    border-color: rgba(255, 159, 28, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.bg-team-img-box {
    margin: 40px auto 25px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--White);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
}
.bg-team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-team-info-box {
    padding: 0 30px 40px 30px;
}
.bg-team-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--Title);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.bg-team-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--Red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* 7. Pricing Section Styles */
.bg-pricing-section {
    padding: 120px 0;
    background: var(--Gray);
}
.bg-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .bg-pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}
.bg-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .bg-pricing-grid {
        grid-template-columns: 1fr;
    }
}
.bg-pricing-card {
    background: var(--White);
    border-radius: 24px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.bg-pricing-card.featured {
    border: 2px solid var(--Neon);
    box-shadow: 0 20px 45px rgba(255, 159, 28, 0.08);
}
.bg-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}
.bg-pricing-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--Title);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.bg-pricing-desc {
    font-size: 14px;
    color: var(--Paragraph);
    margin-bottom: 30px;
    line-height: 1.5;
}
.bg-pricing-amount {
    font-size: 54px;
    font-weight: 800;
    color: var(--Title);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 35px;
}
.bg-pricing-amount .currency {
    color: var(--Red);
}
.bg-pricing-amount .period {
    font-size: 15px;
    color: var(--Paragraph);
    font-weight: 700;
}
.bg-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}
.bg-pricing-feature-item {
    font-size: 14px;
    color: var(--Paragraph);
    display: flex;
    align-items: center;
    gap: 10px;
}
.bg-pricing-feature-item::before {
    content: '✓';
    color: var(--Neon);
    font-weight: bold;
}
.bg-pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    border: 2px solid var(--Red);
    background: transparent;
    color: var(--Red) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s;
}
.bg-pricing-card:hover .bg-pricing-btn,
.bg-pricing-card.featured .bg-pricing-btn {
    background: var(--Red);
    border-color: var(--Red);
    color: #ffffff !important;
}

/* 8. Testimonials Section */
.bg-testimonials-section {
    padding: 120px 0;
    background: var(--White);
}
.bg-testi-card {
    background: var(--Gray);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    text-align: center;
}
.bg-testi-quote {
    font-size: 60px;
    color: var(--Neon);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 10px;
}
.bg-testi-text {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.8;
    color: var(--Title);
    font-style: italic;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}
.bg-testi-stars {
    color: var(--Neon);
    margin-bottom: 25px;
    font-size: 16px;
    letter-spacing: 3px;
}
.bg-testi-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--White);
    margin: 0 auto 15px auto;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.bg-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-testi-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--Title);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}
.bg-testi-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--Red);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bg-testi-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.08);
    background: transparent;
    color: var(--Title);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.bg-testi-nav-btn:hover {
    border-color: var(--Red);
    background: var(--Red);
    color: #ffffff;
}

/* 9. Booking Section Styles - V2 Chalet Check-in Card */
.bg-booking-section {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 38, 30, 0.9) 0%, rgba(11, 15, 12, 0.95) 100%);
    z-index: 1;
}
.bg-booking-chalet-box {
    position: relative;
    z-index: 2;
    background: var(--White);
    border-radius: 30px;
    border: 4px double var(--Neon);
    padding: 60px 50px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
    .bg-booking-chalet-box {
        padding: 40px 25px;
    }
}
.bg-booking-badge-floating {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--Red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(188, 57, 8, 0.3);
}
.bg-booking-input-v2 {
    width: 100%;
    background: var(--Gray) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 16px 20px !important;
    color: var(--Title) !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    border-radius: 12px;
    margin-bottom: 25px;
}
.bg-booking-input-v2:focus {
    background: var(--White) !important;
    border-color: var(--Red) !important;
    box-shadow: 0 0 15px rgba(188, 57, 8, 0.12) !important;
    outline: none !important;
}
.bg-booking-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--Red);
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    font-size: 14px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(188, 57, 8, 0.25);
    cursor: pointer;
}
.bg-booking-submit-btn:hover {
    background: var(--Neon);
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.35);
}

/* 10. News Section Styles */
.bg-news-section {
    padding: 120px 0;
    background: var(--White);
}
.bg-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .bg-news-grid {
        grid-template-columns: 1fr;
    }
}
.bg-news-card {
    background: var(--Gray);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}
.bg-news-card:hover {
    border-color: rgba(255, 159, 28, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}
.bg-news-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.bg-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.bg-news-card:hover .bg-news-img img {
    transform: scale(1.05);
}
.bg-news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--White);
    border: 1px solid var(--Neon);
    padding: 8px 12px;
    text-align: center;
    min-width: 55px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.bg-news-date .day {
    font-size: 18px;
    font-weight: 800;
    color: var(--Red);
    display: block;
    line-height: 1;
}
.bg-news-date .month {
    font-size: 11px;
    font-weight: 700;
    color: var(--Title);
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}
.bg-news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bg-news-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--Paragraph);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}
.bg-news-meta a {
    color: var(--Paragraph);
    text-decoration: none;
}
.bg-news-meta a:hover {
    color: var(--Red);
}
.bg-news-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    font-family: 'Playfair Display', serif;
}
.bg-news-title a {
    color: var(--Title);
    text-decoration: none;
    transition: color 0.3s;
}
.bg-news-card:hover .bg-news-title a {
    color: var(--Red);
}
.bg-news-more {
    font-size: 13px;
    font-weight: 800;
    color: var(--Red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    text-decoration: none;
    transition: all 0.3s;
}
.bg-news-more:hover {
    color: var(--Title);
    gap: 12px;
}
