body {
    font-family: Arial;
    background: #ffffff;
    margin: 0;
}

/* Title */
.title {
    text-align: center;
    color: #ff6a00;
    margin-bottom: 30px;
}

/* Container */
.explore-container {
    max-width: 1100px;
    margin: auto;
}

/* Category */
.category-block {
    margin-bottom: 40px;
}

.category-title {
    margin-bottom: 15px;
}

/* GRID → 4 per row */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Remove link style */
.card-link {
    text-decoration: none;
    color: inherit;
}

/* Card */
.card {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;

    transition: 0.2s;
}

.card:hover {
    background: #fff3e6;
}

/* Logo */
.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: #ff6a00;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    background-size: cover;
}

/* Content */
.content {
    flex: 1;
}

.content h4 {
    margin: 0;
    color: #ff6a00;
    font-size: 14px;
}

.content p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #555;
}

/* Join button */
.join-btn {
    background: white;
    border: 1px solid #ff6a00;
    color: #ff6a00;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}

/* Show more */
.show-more-btn {
    margin-top: 10px;
    background: none;
    border: none;
    color: #ff6a00;
    cursor: pointer;
    font-weight: bold;
}

/* Hidden */
.hidden {
    display: none;
}