.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://pbs.twimg.com/profile_banners/1925494814059184128/1750765078/600x200') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
}

.hero-content {
    text-align: center;
}

.main-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.sub-title {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    opacity: 0.9;
}

.owner-section {
    padding: 100px 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.owner-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
}


.markdown-body {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
    text-align: center;
    margin: 2.5rem 0 1.2rem;
}


.about-main {
    padding: 140px 2rem 100px;
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.about-card h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #222;
    position: relative;
}

.about-card h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #000;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}


.markdown-content {
    line-height: 1.85;
    color: #333;
}

.markdown-content h2,
.markdown-content h3 {
    margin: 2.5rem 0 1.2rem;
    color: #111;
}

.markdown-content p {
    margin-bottom: 1.4rem;
}

.markdown-content ul,
.markdown-content ol {
    margin: 1.2rem 0 1.2rem 1.8rem;
}

.markdown-content li {
    margin-bottom: 0.7rem;
}

.markdown-content blockquote {
    border-left: 4px solid #000;
    padding-left: 1.2rem;
    margin: 2rem 0;
    color: #444;
    font-style: italic;
}


@media (max-width: 768px) {
    .about-main {
        padding: 120px 1.2rem 80px;
    }

    .about-card {
        padding: 2.2rem 1.6rem;
    }
}


.members-section {
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.members-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #222;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.member-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.45rem;
    margin: 0.6rem 0 0.4rem;
    color: #111;
}

.member-type {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-body {
    font-size: 0.96rem;
    color: #444;
    line-height: 1.6;
}


@media (max-width: 600px) {
    .members-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        padding: 1.8rem 1.2rem;
    }
}


.news-main {
    padding: 140px 2rem 100px;
    min-height: 100vh;
    background: #f8f9fa;
    text-align: center;
}

.news-main h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #222;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}


.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.news-card .content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
}

.news-title {
    font-size: 1.35rem;
    margin: 0 0 0.8rem 0;
    color: #111;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: auto;
}

.news-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left;
}

.news-img-large {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1.5rem 0 2rem;
}

.news-body-full {
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.news-body-full img {
    max-width: 100%;
    height: auto;
}


.back-btn {
    display: block;
    margin: 0 auto 4rem;
    padding: 1rem 3rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.back-btn:hover {
    background: #333;
}


@media (max-width: 768px) {
    .news-main {
        padding: 120px 1.2rem 80px;
    }

    .news-grid {
        gap: 2rem;
    }

    .news-detail-card {
        padding: 2rem 1.5rem;
    }
}