
/* ULTRA SMALL + PREMIUM + RESPONSIVE */
:root {
    --grad1: #2563eb;
    --grad2: #7c3aed;
}

.small-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 10px;
    font-family: "Poppins", sans-serif;
}

.small-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--grad1), var(--grad2));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 18px;
}

/* Ultra-small grid */
.small-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

/* Tiny cards */
.small-card {
    padding: 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

/* Tiny hover */
.small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Smaller emoji */
.small-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

/* Smaller text */
.small-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.small-card p {
    font-size: 0.75rem;
    color: #333;
    line-height: 1.2rem;
}

/* Mobile fine tuning */
@media(max-width: 480px){
    .small-title { font-size: 1.3rem; }
    .small-icon { font-size: 26px; }
}

.epcl-theme-author {
    display: none !important;
}
