/* Film Gear Review — 9to5mac Homepage Styles */

.fgr-hero,
.fgr-featured,
.fgr-latest {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO --- */
.fgr-hero { margin-bottom: 32px; }
.fgr-hero__link {
    display: block; position: relative; text-decoration: none;
    border-radius: 8px; overflow: hidden; aspect-ratio: 16/7; min-height: 360px;
}
.fgr-hero__image {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform 0.4s ease;
}
.fgr-hero__link:hover .fgr-hero__image { transform: scale(1.03); }
.fgr-hero__overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 36px 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}
.fgr-hero__title {
    font-family: "Playfair Display", serif;
    font-size: 2rem; font-weight: 700; line-height: 1.25;
    margin: 8px 0 10px; color: #fff;
}
.fgr-hero__meta {
    display: flex; align-items: center; gap: 6px;
    font-family: "DM Sans", sans-serif; font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* --- PILLS --- */
.fgr-pill {
    display: inline-block; font-family: "DM Sans", sans-serif;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; padding: 3px 8px; border-radius: 3px;
    background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(4px);
}
.fgr-pill--sm {
    font-size: 0.65rem; padding: 2px 6px;
    background: #f0f0f0; color: #555; backdrop-filter: none;
}
.fgr-hero__cats .fgr-pill { background: rgba(255,255,255,0.2); color: #fff; }

/* --- FEATURED STRIP --- */
.fgr-featured { margin-bottom: 48px; }
.fgr-featured__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fgr-featured__card {
    border-radius: 8px; overflow: hidden; background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: box-shadow 0.2s, transform 0.2s;
}
.fgr-featured__card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); transform: translateY(-2px); }
.fgr-featured__link { text-decoration: none; color: inherit; display: block; }
.fgr-featured__thumb {
    width: 100%; aspect-ratio: 16/10;
    background-size: cover; background-position: center; background-color: #e8e8e8;
}
.fgr-featured__body { padding: 12px 14px 16px; }
.fgr-featured__cats { margin-bottom: 6px; }
.fgr-featured__title {
    font-family: "Source Serif 4", serif; font-size: 0.95rem; font-weight: 600;
    line-height: 1.35; margin: 0 0 6px; color: #1a1a1a;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.fgr-featured__meta { font-family: "DM Sans", sans-serif; font-size: 0.72rem; color: #999; }

/* --- LATEST --- */
.fgr-latest { margin-bottom: 60px; }
.fgr-section-title {
    font-family: "DM Sans", sans-serif; font-size: 1.3rem; font-weight: 700;
    color: #1a1a1a; margin: 0 0 24px; padding-bottom: 12px;
    border-bottom: 2px solid #1a1a1a; text-transform: uppercase; letter-spacing: 0.02em;
}
.fgr-latest__item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #eee; }
.fgr-latest__item:last-child { border-bottom: none; }
.fgr-latest__thumb-wrap { flex-shrink: 0; width: 180px; }
.fgr-latest__thumb {
    width: 180px; height: 120px; background-size: cover;
    background-position: center; border-radius: 6px; background-color: #e8e8e8;
}
.fgr-latest__thumb--placeholder { background: #f0f0f0; }
.fgr-latest__body { flex: 1; min-width: 0; }
.fgr-latest__cats { margin-bottom: 6px; }
.fgr-latest__title {
    font-family: "Source Serif 4", serif; font-size: 1.15rem; font-weight: 600;
    line-height: 1.3; margin: 0 0 8px;
}
.fgr-latest__title a { color: #1a1a1a; text-decoration: none; }
.fgr-latest__title a:hover { color: #e8b84b; }
.fgr-latest__meta {
    display: flex; align-items: center; gap: 6px;
    font-family: "DM Sans", sans-serif; font-size: 0.78rem; color: #888;
}
.fgr-latest__avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.fgr-dot { color: #ccc; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .fgr-hero__link { aspect-ratio: 16/9; min-height: 280px; }
    .fgr-hero__title { font-size: 1.4rem; }
    .fgr-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .fgr-featured__title { font-size: 0.88rem; }
    .fgr-latest__thumb-wrap { width: 120px; }
    .fgr-latest__thumb { width: 120px; height: 80px; }
    .fgr-latest__title { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .fgr-featured__grid { grid-template-columns: 1fr; }
    .fgr-latest__thumb-wrap { width: 100px; }
    .fgr-latest__thumb { width: 100px; height: 70px; }
    .fgr-hero__title { font-size: 1.2rem; }
}