/* ========================================
   EQUIPMENT REVIEWS PAGE STYLES
   Quest To Shoot My Age
   ======================================== */

/* Equipment Review Specific Styles */
/* .equipment-review { */
    /* Inherits from blog-preview styles */
/* } */

/* .featured-review { */
    /* Inherits from featured-preview styles */
/* } */

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.review-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, 
        var(--color-metal-light), 
        var(--color-metal-mid));
    color: var(--color-bg-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    border-radius: var(--radius-full);
}

.review-category {
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-text-secondary);
}

/* Rating Container */
.rating-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stars {
    font-size: var(--font-size-2xl);
    color: var(--color-metal-light);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.rating-text {
    font-size: var(--font-size-base);
    color: var(--color-text-tertiary);
    font-weight: var(--font-weight-medium);
}

/* Pros and Cons Section */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros h4,
.cons h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-normal);
}

.pros h4 {
    color: #90ff90;
}

.cons h4 {
    color: #ff9090;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros ul li,
.cons ul li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

.pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #90ff90;
    font-weight: bold;
    font-size: var(--font-size-lg);
}

.cons ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff9090;
    font-weight: bold;
    font-size: var(--font-size-lg);
}

/* Review Title */
.review-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
}

.review-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
}

.review-title a:hover {
    color: var(--color-text-secondary);
}

.featured-review .review-title {
    font-size: var(--font-size-5xl);
}

/* Review Excerpt */
.review-excerpt {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-xl);
}

.review-excerpt p {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
}

.featured-review .review-excerpt p {
    font-size: var(--font-size-xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-title {
        font-size: var(--font-size-2xl);
    }

    .featured-review .review-title {
        font-size: var(--font-size-3xl);
    }

    .review-excerpt p,
    .featured-review .review-excerpt p {
        font-size: var(--font-size-base);
    }

    .pros-cons {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

    .stars {
        font-size: var(--font-size-xl);
    }

    .rating-container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}