﻿/* Import a classy serif for that editorial look */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Lora:ital@0;1&display=swap');

.review-editorial {
    background-color: #fff;
    border: 1px solid #eaeaea;
    min-height: 600px; /* Gives plenty of room for 200 words */
}

/* Header Styling */
.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 800;
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.title-accent-line {
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin-top: 15px;
}

/* Body Text Styling */
.review-long-form {
    font-family: 'Lora', serif; /* Highly legible for long reading */
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify; /* Optional: adds to the magazine look */
}

/* The Drop Cap Effect */
.drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 10px;
    padding-left: 3px;
    color: #d4af37; /* Gold first letter */
}

/* Footer Details */
.serif-font {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.tracking-widest {
    letter-spacing: 3px;
    font-size: 0.65rem;
}

.editorial-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(10%) contrast(110%); /* Subtle editorial filter */
}

/* Responsive Fix */
@media (max-width: 991px) {
    .display-title {
        font-size: 2.2rem;
    }

    .editorial-image {
        height: 350px;
    }

    .review-long-form {
        text-align: left;
    }
}

.editorial-stars {
    color: #d4af37; /* The signature gold */
    font-size: 0.9rem;
    letter-spacing: 3px; /* Gives them a "spaced out" premium look */
    display: block;
}

    /* Optional: Add a very faint glow to make them pop against the white */
    .editorial-stars i {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }



