/* Global Creative Styles for Dynamic Modules (Stubs) */

:root {
    --module-bg: #0b0b0b;
    --module-accent: #fff;
    --module-gray: #777;
    --module-border: #f0f0f0;
}

/* Removed harmful header overrides that caused visibility issues */


/* Module Hero Banner */
.module-hero {
    background: var(--module-bg);
    padding: 200px 0 100px;
    position: relative;
    text-align: center;
}

.module-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(35px, 6vw, 80px);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Module Grid */
.module-grid-area {
    padding: 100px 0;
    background: #fff;
}

.module-item {
    margin-bottom: 60px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
}

.module-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 24px;
    background: #f8f8f8;
    margin-bottom: 25px;
}

.module-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.module-item:hover .module-img-box img {
    transform: scale(1.08);
}

.module-item .title {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.module-item:hover .title {
    color: var(--theme-color, #111);
}

.module-item .meta {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    color: var(--module-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Detail Support */
.module-detail-visual {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.module-content-body {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    line-height: 2;
    color: #333;
}

.module-content-body h2,
.module-content-body h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #111;
}

/* Common Components */
.module-pagination {
    margin-top: 80px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    padding: 20px 40px;
    border: 2px solid #111;
    border-radius: 50px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}