.reviews-hero {
    min-height: 30vh; 
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    padding-top: 130px; 
    padding-bottom: 40px; 
    padding-left: 20px;
    padding-right: 20px;
}

.reviews-hero__content {
    max-width: 900px;
    margin-left: 8%;
    text-align: left;
}

.reviews-hero__title {
    font-family: 'TildaSans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.15;
    margin-bottom: 18px;
}

.reviews-hero__subtitle {
    font-family: 'TildaSans', sans-serif;
    font-size: 1.25rem;
    color: #555;
    line-height: 1.5;
}

.reviews-section {
    padding: 60px 0 100px;
    background: #F8F9FA;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.review__stars {
    color: #ffc107;
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.review__text {
    font-family: 'TildaSans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.review__info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review__location {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.review__date {
    margin: 0;
    color: #990823;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'TildaSans', system-ui, sans-serif;
    position: relative;
    padding-left: 20px; 
}

.review__date::before {
    content: "📅";
    position: absolute;
    left: 0;
	margin-right: 10
    font-size: 1.05rem;
    line-height: 1;
}

.review-card {
    position: relative; 
    overflow: hidden;
}

.review__pin {
    position: absolute;
    top: -8px;
    right: 20px;
    font-size: 28px;
    color: #8a8a8a; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transform: rotate(-15deg);
    z-index: 2;
    transition: transform 0.3s ease;
}

.review-card:hover .review__pin {
    transform: rotate(0deg) scale(1.1);
}

.review-card.pinned::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 18px;
    width: 42px;
    height: 6px;
    background: rgba(0, 0, 0, 0.07);
    transform: rotate(-15deg);
    z-index: 1;
    border-radius: 2px;
}

.review-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #22c55e;
    color: white;
    font-family: 'TildaSans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px 4px 9px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 5;
    transition: all 0.2s ease;
    line-height: 1;
}

.review-card:hover .review-new-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.review-card.new-review {
    padding-top: 48px; 
}
