:root {
    --netflix-red: #e50914;
    --netflix-black: #000000;
    --netflix-dark-gray: #141414;
    --netflix-gray: #2f2f2f;
    --netflix-light-gray: #8c8c8c;
    --netflix-white: #ffffff;
    --fittelly-orange: #f7a31a;
    --fittelly-orange-hover: #e8941a;
    --body-fonts: "Roboto", sans-serif;
    --title-fonts: "Jost", sans-serif;
}
/* Variables (you already have in root) */
.fitinsight-page {
    color: var(--netflix-white);
    background: var(--netflix-black);
}
.hero-section {
    position: relative;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.hero-content p {
    font-size: 1rem;
    color: var(--netflix-light-gray);
    margin-bottom: 1.5rem;
}
.hero-search {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.hero-search input {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 1px solid #444;
    border-radius: 25px;
    background: var(--netflix-gray);
    color: #fff;
    font-size: 1rem;
}
.hero-search .search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--netflix-light-gray);
    pointer-events: none;
}

/* Categories */
.categories-section {
    padding: 1rem 0;
    background: var(--netflix-dark-gray);
}
.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.cat-btn {
    padding: 0.5rem 1rem;
    background: var(--netflix-gray);
    color: var(--netflix-white);
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
}
.cat-btn.active,
.cat-btn:hover {
    background: var(--fittelly-orange);
    color: var(--netflix-black);
}

/* Content Cards */
.content-card {
    background: var(--netflix-dark-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}
.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}
.content-card:hover .card-image {
    transform: scale(1.05);
}
.card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.95), transparent);
}
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}
.card-meta {
    font-size: 0.85rem;
    color: var(--netflix-light-gray);
    margin-bottom: 0.5rem;
}
.card-meta span {
    margin-right: 1rem;
}
.card-description {
    font-size: 0.9rem;
    color: var(--netflix-light-gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--fittelly-orange);
    color: var(--netflix-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Sidebar */
.sidebar-card {
    background: var(--netflix-dark-gray);
    border-radius: 10px;
    margin-bottom: 2rem;
}
.sidebar-card .card-header {
    background: var(--primary-color);
    color: var(--netflix-black);
    font-weight: bold;
    padding: 0.75rem;
    border-radius: 10px 10px 0 0;
}
.sidebar-card .card-body {
    padding: 0.75rem;
}
.sidebar-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.sidebar-item img.sidebar-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0.75rem;
}
.sidebar-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.sidebar-item a:hover {
    color: var(--fittelly-orange);
}

/* Newsletter Card */
.newsletter-card {
    background: var(--fittelly-orange);
    color: var(--netflix-black);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.newsletter-card h5 {
    margin-bottom: 0.75rem;
}
.newsletter-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.newsletter-card input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 25px;
    margin-bottom: 0.75rem;
}
.newsletter-card button {
    background: var(--netflix-black);
    color: var(--fittelly-orange);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    width: 100%;
}

/* No articles / empty state */
.no-articles {
    text-align: center;
    color: var(--netflix-light-gray);
    padding: 4rem 0;
}
.no-articles h4 {
    margin-bottom: 1rem;
}

/* Pagination wrapper */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 20vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .card-image {
        height: 150px;
    }
}
