.ks-panchang-wrapper {
    background: var(--ks-bg);
    border: 1px solid var(--ks-border);
    border-radius: 8px;
    padding: 24px 20px; 
    box-shadow: var(--ks-shadow);
}

.ks-panchang-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 18px; 
}

.ks-panchang-item {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px; 
}

.ks-emoji {
    font-size: 24px; 
    margin-right: 6px;
    line-height: 1;
}

/* =========================================
   DEFAULT ENGLISH TYPOGRAPHY (Smaller)
========================================= */
.ks-panchang-wrapper[data-ks-lang="en"] .ks-panchang-label {
    font-family: 'Poppins', sans-serif;
    color: var(--ks-text);
    font-weight: 600; 
    font-size: 14px; /* Reduced English size */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    white-space: nowrap; 
}

.ks-panchang-wrapper[data-ks-lang="en"] .ks-panchang-val {
    font-family: 'Poppins', sans-serif;
    color: var(--ks-text);
    font-size: 16px; /* Reduced English size */
    font-weight: 400;
}

/* =========================================
   TELUGU TYPOGRAPHY (Bigger, Specific Fonts)
========================================= */
.ks-panchang-wrapper[data-ks-lang="te"] .ks-panchang-label {
    font-family: 'Sree Krushnadevaraya', serif;
    color: var(--ks-text);
    font-weight: bold; 
    font-size: 18px; /* Increased Telugu Headings */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    white-space: nowrap; 
}

.ks-panchang-wrapper[data-ks-lang="te"] .ks-panchang-val {
    font-family: 'Mallanna', sans-serif;
    color: var(--ks-text);
    font-size: 20px; /* Increased Telugu Values */
    font-weight: 400;
}

/* Responsive Scaling */
@media (max-width: 1024px) { .ks-panchang-item { flex: 1 1 calc(25% - 15px); margin-bottom: 15px; } }
@media (max-width: 768px) { .ks-panchang-item { flex: 1 1 calc(33.333% - 15px); } }
@media (max-width: 576px) { .ks-panchang-item { flex: 1 1 calc(50% - 15px); } }