/* =========================================
   Custom Block Styles for Specific Pages
   ========================================= */

/* --- CREATOR Page (Member List) --- */
/* Use "Media & Text" block or Columns block */
.member-profile {
    margin-bottom: 80px;
    align-items: center;
}

.member-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-role {
    font-size: 0.9rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.member-desc {
    font-size: 0.9rem;
    color: #ccc;
    font-family: var(--font-sans);
    line-height: 1.8;
}

/* --- VIDEO EDITING Page (YouTube List) --- */
/* Responsive YouTube Embeds */
.wp-block-embed-youtube {
    margin-bottom: 40px;
}

.wp-block-embed-youtube iframe {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Subtle shadow for depth */
}

.video-title {
    color: var(--accent-color);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.video-desc {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 60px;
    /* Spacing between videos */
    line-height: 1.6;
}

/* --- GRAPHIC DESIGN Page --- */
/* Grid of images (using Gallery block or Columns) */
.graphic-grid {
    display: grid;
    gap: 20px;
}

.graphic-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.graphic-item:hover img {
    transform: scale(1.02);
    /* opacity: 0.8; */
}

/* --- Section Headers (e.g. "CREATOR", "WORK") --- */
.page-section-title {
    font-family: var(--font-serif);
    color: var(--accent-color);
    /* Gold */
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    /* Optional: Gold underline or decoration if seen in screenshots? */
}