/* ================================
   WeClub PPC Wrapper
================================ */
.we-club-ppc-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: inherit;
    color: #333;
}

/* ================================
   Header
================================ */
.we-club-ppc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.we-club-ppc-header div {
    font-size: 15px;
    font-weight: 500;
}

.we-club-ppc-header .ppc-count,
.we-club-ppc-header .ppc-earning {
    opacity: 0.95;
}

/* ================================
   PPC Container
================================ */
.we-club-ppc-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* ================================
   PPC Card
================================ */
.we-club-link {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.we-club-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ================================
   Image
================================ */
.we-club-link-img {
    background: #f8f9fb;
    padding: 0;
    text-align: center;
}

.we-club-link-img img {
    max-width: 100%;
    object-fit: contain;
}

/* ================================
   Content
================================ */
.we-club-link-content {
    padding: 20px;
    flex-grow: 1;
    text-align: center;
}

.we-club-link-info .link-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.we-club-link-info .link-notice {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* ================================
   Action Button
================================ */
.we-club-link-action {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eef0f4;
}

.we-club-link-action .ppc-link {
    display: inline-block;
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.we-club-link-action .ppc-link:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* ================================
   Disabled State
================================ */
.we-club-link-action .ppc-link.disabled,
.we-club-link-action .ppc-link:disabled {
    background: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

/* ================================
   Responsive
================================ */
@media (max-width: 768px) {
    .we-club-ppc-header {
        flex-direction: column;
        text-align: center;
    }

    .we-club-link-info .link-title {
        font-size: 17px;
    }
}
