.community-hero {
    padding: 180px 0 100px;
    background: #fcfcfc;
    overflow: hidden;
}

.com-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: min(100% - 200px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
}

.com-content {
    flex: 1;
    max-width: 600px;
}

.com-label {
    display: block;
    margin-bottom: 20px;
    color: #E67E22;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.com-title {
    margin: 0 0 30px;
    color: #1a2a3a;
    font-size: clamp(42px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.25;
    word-break: keep-all;
}

.com-title .highlight {
    color: #E67E22;
}

.com-desc {
    margin: 0 0 40px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    word-break: keep-all;
}

.com-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.com-stat-item strong {
    display: block;
    color: #1a2a3a;
    font-size: 24px;
    font-weight: 800;
}

.com-stat-item span {
    color: #999;
    font-size: 14px;
}

.com-visual {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.com-image-box {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.com-image-box img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.com-accent {
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    width: 120px;
    height: 120px;
    border-right: 10px solid #E67E22;
    border-bottom: 10px solid #E67E22;
    border-radius: 0 0 40px 0;
}

.community-title {
    font-size: 48px;
    font-weight: 800;
    margin: 60px 0 40px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.post-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    color: inherit;
    text-decoration: none;
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.post-info {
    padding: 25px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
}

.community-detail {
    padding: 110px 0 90px;
}

.community-detail-hero {
    width: min(100% - 40px, 1120px);
    height: min(52vw, 520px);
    min-height: 280px;
    margin: 0 auto;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    background-color: #f3f0eb;
}

.community-detail-inner {
    width: min(100% - 40px, 860px);
    margin: 48px auto 0;
}

.community-back {
    display: inline-block;
    margin-bottom: 28px;
    color: #E67E22;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.community-meta {
    color: #86868b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-detail h1 {
    margin: 0 0 34px;
    color: #1a2a3a;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.18;
    word-break: keep-all;
}

.community-body {
    color: #333;
    font-size: 1rem;
    line-height: 1.85;
    word-break: keep-all;
}

.community-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 18px;
}

.community-body p {
    margin: 0 0 18px;
}

@media (max-width: 768px) {
    .community-hero {
        padding: 130px 0 70px;
    }

    .com-container {
        flex-direction: column;
        gap: 44px;
        width: min(100% - 32px, 720px);
        padding: 0;
        text-align: center;
    }

    .com-desc,
    .com-stats {
        display: none;
    }

    .com-stats {
        justify-content: center;
    }

    .com-visual {
        justify-content: center;
    }

    .com-image-box img {
        border-radius: 28px;
    }

    .com-accent {
        display: none;
    }

    .community-title {
        font-size: 38px;
    }

    .community-detail {
        padding: 92px 0 70px;
    }

    .community-detail-hero,
    .community-detail-inner {
        width: min(100% - 28px, 860px);
    }
}
