
/* ===== MAIN CONTAINER ===== */
.container-fluid {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* ===== COMMUNITY WRAPPER ===== */
.community-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 16px;

    /* 🔥 Gradient yawe */
    background: linear-gradient(
        135deg,
        rgba(84, 173, 222, 0.15) 0%,
        rgba(255, 107, 53, 0.15) 100%
    );

    border: 2px solid #54adde;
    box-shadow: 0 15px 40px rgba(84, 173, 222, 0.15);

    backdrop-filter: blur(6px);
}

/* ===== TITLE ===== */
.community-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

/* ===== META ===== */
.community-met {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #54adde;
}

/* ===== IMAGE ===== */
.community-image {
    width: 70%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CONTENT ===== */
.community-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: white;
}