* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

.container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Hero Section */
.hero {
    margin-bottom: 50px;
}

.hero-supertitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0;
}

.hero-supertitle a {
    text-decoration: none;
    padding: 8px;
    margin-left: -8px;
    background: rgba(220, 220, 220, 0);
    border-radius: 8px;
    color: #666;
    transition: background 0.25s ease-in-out;
}

.hero-supertitle a:hover {
    background: rgba(220, 220, 220, 1);
    transition: background 0.25s ease-in-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intro {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    width: 60%;
}

.hero-links {
    margin-top: 16px;
}

.contact-link {
    text-decoration: none;
    padding: 8px;
    background: rgba(220, 220, 220, 0);
    border-radius: 8px;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    transition: background 0.25s ease-in-out;
}

.contact-link:hover {
    background: rgba(220, 220, 220, 1);
    transition: background 0.25s ease-in-out;
}

/* Sections */
.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Grid Layout */
.grid {
    display: grid;
    row-gap: 40px;
    column-gap: 16px;
    margin-bottom: 40px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.caption-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 4px;
}

.caption {
    font-size: 0.875rem;
    color: #666;
}

/* Subsections */
.subsection {
    margin-bottom: 32px;
}

.subsection-header {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.subsection-header strong {
    font-weight: 700;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.footerText {
    font-size: 0.875rem;
    color: #888;
}

/* Video Cards */
.card video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    background-color: #f0f0f0;
}

.card .video-link {
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    flex-shrink: 0;
}

.card .video-link:hover {
    color: #555;
    text-decoration: underline;
}

/* Card Meta (Person, Action, Goal) */
.card-meta {
    display: flex;
    gap: 16px;
    padding-left: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
}

.card-meta-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.card-meta-text {
    flex: 1;
}

.card-meta-label {
    font-weight: 600;
    color: #666;
}

.card-meta-icon {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1150px) {
    .card-meta {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .intro {
        width: 100%;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer p {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .caption-row {
        flex-direction: column;
    }
}
