:root {
    --maroon: #6d071a;
    --deep: #480713;
    --gold: #c9972c;
    --gold-soft: #e8cf91;

    --ivory: #fffaf0;
    --cream: #f5ead2;
    --paper: #fffdf8;

    --ink: #332526;
    --muted: #756568;

    --border: #e7d7b8;
    --shadow: 0 14px 38px rgba(74, 28, 14, .10);
}

/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--deep);
    color: #f8e7b7;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.topbar-inner {
    max-width: 1280px;
    margin: auto;
    padding: 8px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-note {
    opacity: .8;
}

/* =========================================================
   HEADER
========================================================= */

.header-main {
    min-height: 88px;
    padding: 12px 3%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--maroon);

    flex-shrink: 0;
}

.brand-mark {
    font-size: 55px;
    line-height: .9;
    color: var(--gold);
}

.brand strong {
    display: block;

    font-size: 24px;
    line-height: .82;

    letter-spacing: .5px;
}

.brand small {
    display: block;

    margin-top: 8px;

    font: 700 10px Arial, sans-serif;

    letter-spacing: 2px;

    color: #8b6b49;
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;

    gap: 18px;

    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    font: 700 12px Arial, sans-serif;

    color: #4d3939;
}

.main-nav a {
    padding: 12px 1px;

    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .active {
    color: var(--maroon);
    border-bottom-color: var(--gold);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    font-size: 26px;

    color: var(--maroon);

    cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 590px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #8e2531 0,
            #5d0717 48%,
            #2f020a 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(235, 199, 104, .25),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            rgba(38, 0, 7, .55),
            rgba(72, 3, 15, .18),
            rgba(38, 0, 7, .55)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 70px 25px;

    color: #fff;
}

.hero-eyebrow {
    font: 700 12px Arial, sans-serif;

    letter-spacing: 3px;

    color: #f0d58d;
}

.hero-om {
    font-size: 76px;

    color: #f2d07b;

    margin: 12px 0 2px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 70px);

    margin: 0 0 18px;

    line-height: 1.05;
}

.hero p {
    max-width: 680px;

    margin: 0 auto 28px;

    font-size: 20px;

    line-height: 1.7;

    color: #f9eee0;
}

.hero-actions {
    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    border-radius: 3px;

    font: 700 12px Arial, sans-serif;

    letter-spacing: .5px;
}

.button-gold {
    background: var(--gold);

    color: #fff;

    border: 1px solid var(--gold);
}

.button-light {
    background: transparent;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .65);
}

.button-light:hover {
    background: #fff;

    color: var(--maroon);
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    max-width: 1220px;

    margin: 0 auto;

    padding: 78px 24px;
}

.section-heading {
    text-align: center;

    margin-bottom: 38px;
}

.section-kicker {
    font: 700 10px Arial, sans-serif;

    letter-spacing: 3px;

    color: #9b6f23;
}

.section-heading h2,
.panchang-copy h2,
.youtube-inner h2,
.horoscope-banner h2 {
    margin: 8px 0 10px;

    color: var(--maroon);

    font-size: 38px;
}

.section-heading p {
    margin: 0 auto;

    max-width: 650px;

    color: var(--muted);

    line-height: 1.7;

    font-family: Arial, sans-serif;

    font-size: 14px;
}

/* =========================================================
   DAILY FEATURE
========================================================= */

.daily-feature {
    background: var(--maroon);

    color: #fff;
}

.daily-inner {
    max-width: 1120px;

    margin: auto;

    padding: 28px 24px;

    display: flex;

    align-items: center;

    gap: 28px;
}

.daily-label {
    font: 700 10px Arial, sans-serif;

    letter-spacing: 2px;

    color: #e9c96d;
}

.daily-inner h2 {
    margin: 0;

    font-size: 27px;
}

.daily-inner p {
    margin: 5px 0 0;

    color: #ead9d0;

    font-family: Arial, sans-serif;

    font-size: 13px;
}

.daily-inner .button {
    margin-left: auto;
}

/* =========================================================
   PANCHANG
========================================================= */

.panchang-preview {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}

.panchang-copy p {
    max-width: 580px;

    color: var(--muted);

    font: 15px/1.8 Arial, sans-serif;
}

.text-link {
    display: inline-block;

    color: var(--maroon);

    font: 700 12px Arial, sans-serif;

    margin-top: 12px;
}

.panchang-card {
    background: var(--paper);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    padding: 28px;
}

.panchang-card-head {
    display: flex;

    gap: 15px;

    align-items: center;

    border-bottom: 1px solid var(--border);

    padding-bottom: 18px;
}

.panchang-card-head > span {
    font-size: 32px;
}

.panchang-card-head strong {
    display: block;

    color: var(--maroon);

    font-size: 21px;
}

.panchang-card-head small {
    display: block;

    color: var(--muted);

    font: 12px Arial, sans-serif;

    margin-top: 4px;
}

.panchang-items {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 18px;
}

.panchang-items div {
    background: var(--cream);

    padding: 14px;
}

.panchang-items b {
    display: block;

    color: var(--maroon);

    font-size: 13px;
}

.panchang-items span {
    font: 11px Arial, sans-serif;

    color: var(--muted);
}

/* =========================================================
   ROW HEADINGS
========================================================= */

.row-heading {
    display: flex;

    text-align: left;

    align-items: end;

    justify-content: space-between;
}

.row-heading p {
    margin: 5px 0 0;
}

/* =========================================================
   STOTRA GRID
========================================================= */

.stotra-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.stotra-card,
.article-card {
    background: var(--paper);

    border: 1px solid var(--border);

    box-shadow: 0 5px 20px rgba(80, 40, 10, .05);

    overflow: hidden;
}

.card-image-placeholder,
.article-image {
    height: 175px;

    background:
        radial-gradient(
            circle,
            #c99b3a 0,
            #6d071a 65%,
            #3e030c 100%
        );

    display: grid;

    place-items: center;

    color: #f7dc8d;

    font-size: 55px;
}

.card-image-placeholder img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}

.stotra-card-body {
    padding: 20px;
}

.card-meta {
    font: 700 10px Arial, sans-serif;

    letter-spacing: 1.5px;

    color: #a17120;
}

.stotra-card h2,
.stotra-card h3 {
    color: var(--maroon);

    font-size: 21px;

    margin: 8px 0;
}

.stotra-card p {
    color: var(--muted);

    font: 12px/1.6 Arial, sans-serif;

    min-height: 38px;
}

.stotra-card a,
.article-body a {
    color: var(--maroon);

    font: 700 11px Arial, sans-serif;
}

/* =========================================================
   STOTRA CARD IMAGE FIX
========================================================= */

.stotra-card > a {
    display: block;

    width: 100%;

    text-decoration: none;
}

.stotra-card .card-image-placeholder {
    width: 100%;

    height: 175px !important;

    min-height: 175px !important;

    max-height: 175px !important;

    overflow: hidden !important;

    display: block !important;

    position: relative !important;
}

.stotra-card .card-image-placeholder img {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;

    object-position: center !important;

    position: static !important;
}

.stotra-card .stotra-card-body {
    position: relative !important;

    z-index: 2 !important;

    margin: 0 !important;

    padding: 20px !important;

    background: #fffdf8 !important;
}

.stotra-card .card-meta,
.stotra-card h2,
.stotra-card h3,
.stotra-card p {
    position: static !important;

    transform: none !important;
}

/* =========================================================
   ARTICLES
========================================================= */

.article-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.article-image {
    height: 150px;

    background:
        linear-gradient(
            135deg,
            #7a1425,
            #c39745
        );
}

.article-body {
    padding: 20px;
}

.article-body > span {
    font: 700 10px Arial, sans-serif;

    color: #9b6f23;

    letter-spacing: 1px;
}

.article-body h3 {
    color: var(--maroon);

    font-size: 20px;

    line-height: 1.3;

    margin: 9px 0 16px;
}

/* =========================================================
   HOME YOUTUBE SECTION
========================================================= */

.youtube-section {
    padding-top: 25px;
}

.youtube-inner {
    background: var(--cream);

    border: 1px solid var(--border);

    padding: 38px 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.youtube-inner p {
    color: var(--muted);

    font: 14px/1.7 Arial, sans-serif;

    max-width: 650px;
}

/* =========================================================
   HOROSCOPE
========================================================= */

.horoscope-banner {
    background: var(--deep);

    color: #fff;

    padding: 45px max(24px, calc((100% - 1120px) / 2));

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.horoscope-banner h2 {
    color: #f2d07b;
}

.horoscope-banner p {
    font: 14px Arial, sans-serif;

    color: #e5d6d0;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #31040b;

    color: #f5e8d8;

    padding: 55px 5% 20px;

    font-family: Arial, sans-serif;
}

.footer-inner {
    max-width: 1220px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.3fr;

    gap: 45px;
}

.footer-logo {
    font: 50px Georgia;

    color: #d7aa4b;
}

.footer-brand h2 {
    font: 20px Georgia;

    color: #f0d18a;
}

.footer-brand p {
    font-size: 13px;

    line-height: 1.7;

    color: #cdb8b3;
}

.footer-inner h3 {
    color: #e6c56f;

    font: 700 12px Arial, sans-serif;

    letter-spacing: 1px;
}

.footer-inner a {
    display: block;

    margin: 10px 0;

    font-size: 13px;

    color: #eadbd4;
}

.footer-inner a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1220px;

    margin: 40px auto 0;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .16);

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    color: #bda9a5;
}

/* =========================================================
   STOTRA DETAIL PAGE
========================================================= */

.breadcrumb {
    margin: 8px auto 0;

    max-width: 1000px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    font-family: Arial, sans-serif;

    font-size: 14px;

    color: var(--muted);
}

.breadcrumb a {
    color: var(--maroon);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: #a58d83;
}

.stotra-detail {
    max-width: 1180px;

    margin: 0 auto;

    padding: 20px 24px 80px;
}

.stotra-detail-header {
    display: grid;

    grid-template-columns:
        minmax(380px, 1fr)
        minmax(420px, 1fr);

    gap: 50px;

    align-items: center;

    margin: 25px 0 60px;
}

.stotra-detail-image {
    min-height: 350px;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #8b1828 42%,
            #4a0611 78%,
            #300209 100%
        );

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.stotra-detail-image img {
    width: 100%;

    height: 100%;

    min-height: 350px;

    object-fit: cover;

    display: block;
}

.detail-image-placeholder {
    width: 100%;

    min-height: 350px;

    display: grid;

    place-items: center;

    color: #f5d47d;
}

.detail-image-placeholder span {
    font-size: 110px;

    line-height: 1;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, .25);
}

.stotra-detail-intro {
    padding: 15px 0;
}

.stotra-detail-intro .card-meta {
    margin-bottom: 12px;
}

.stotra-detail-intro h1 {
    margin: 0 0 14px;

    color: var(--maroon);

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.18;
}

.stotra-detail-intro h2 {
    margin: 0 0 20px;

    color: var(--ink);

    font-size: 25px;

    line-height: 1.3;
}

.stotra-description {
    margin: 0;

    max-width: 620px;

    color: var(--muted);

    font: 16px/1.8 Arial, sans-serif;
}

.stotra-purpose {
    background: var(--cream);

    border: 1px solid var(--border);

    padding: 35px 40px;

    margin-bottom: 55px;

    box-shadow:
        0 8px 25px rgba(80, 40, 10, .05);
}

.stotra-purpose h2 {
    margin: 8px 0 14px;

    color: var(--maroon);

    font-size: 31px;
}

.stotra-purpose p {
    margin: 0;

    color: var(--ink);

    font: 15px/1.8 Arial, sans-serif;
}

.stotra-lyrics {
    background: var(--paper);

    border: 1px solid var(--border);

    padding: 40px;

    margin-bottom: 55px;

    box-shadow: var(--shadow);
}

.stotra-lyrics h2 {
    margin: 8px 0 28px;

    color: var(--maroon);

    font-size: 32px;

    line-height: 1.3;
}

.lyrics-content {
    max-width: 900px;

    margin: 0 auto;

    padding: 35px 40px;

    background: #fffaf0;

    border-left: 4px solid var(--gold);

    color: var(--ink);

    font-size: 20px;

    line-height: 2;

    white-space: normal;

    overflow-wrap: break-word;
}

.stotra-youtube {
    background: var(--deep);

    color: #fff;

    padding: 38px 45px;

    margin-bottom: 45px;

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.stotra-youtube .section-kicker {
    width: 100%;

    color: #e8c86e;
}

.stotra-youtube h2 {
    margin: 0;

    color: #f2d07b;

    font-size: 30px;
}

.stotra-youtube p {
    flex: 1;

    min-width: 280px;

    margin: 0;

    color: #ead9d0;

    font: 14px/1.7 Arial, sans-serif;
}

.stotra-youtube .button {
    flex-shrink: 0;
}

.stotra-detail-actions {
    text-align: center;

    padding-top: 5px;
}

/* =========================================================
   DEITY LISTING PAGE
========================================================= */

.section > .deity-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

    width: 100%;

    margin: 28px auto 45px;
}

.section > .deity-grid .deity-card {
    position: relative;

    background: #fffdf8;

    border: 1px solid #e7d4ad;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 5px 16px rgba(74, 0, 16, 0.07);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.section > .deity-grid .deity-card:hover {
    transform: translateY(-4px);

    border-color: #c99a2e;

    box-shadow:
        0 14px 32px rgba(70, 30, 20, 0.12);
}

.deity-card-link {
    display: block;

    width: 100%;
    height: 100%;

    color: inherit;

    text-decoration: none;
}

.deity-card-link:hover {
    color: inherit;

    text-decoration: none;
}

.deity-card-link:focus-visible {
    outline: 2px solid #c9982e;

    outline-offset: 3px;
}

.section > .deity-grid .deity-image {
    width: 100%;

    height: 145px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0,
            #7d1426 58%,
            #3e030c 100%
        );
}

.section > .deity-grid .deity-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.section > .deity-grid .deity-card:hover .deity-image img {
    transform: scale(1.04);
}

.deity-image-placeholder {
    width: 100%;
    height: 100%;

    min-height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #b66b2e 0%,
            #7a1825 48%,
            #5a0716 100%
        );
}

.deity-image-placeholder span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 64px;

    line-height: 1;

    color: #f3cf72;
}

.section > .deity-grid .deity-card-body {
    padding: 10px 8px 12px;

    text-align: center;
}

.section > .deity-grid .deity-telugu {
    margin: 0;

    color: #b57d12;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;
}

.section > .deity-grid .deity-card-body h2,
.section > .deity-grid .deity-card-body h3 {
    margin: 0 0 5px;

    color: #351525;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.2;
}

.section > .deity-grid .deity-card-body p {
    margin: 0;

    color: #65504b;

    font-size: 12px;

    line-height: 1.4;
}

.deity-read-more {
    display: inline-block;

    color: #8d1025;

    font-size: 12px;

    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;

    width: 100%;

    padding: 60px 30px;

    text-align: center;

    border: 1px solid #e7d4ad;

    background: #fffdf8;
}

.empty-state h2 {
    margin-bottom: 12px;

    color: #351525;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.empty-state p {
    margin: 0;

    color: #65504b;
}

/* =========================================================
   DEITY DETAIL PAGE
========================================================= */

.deity-detail {
    max-width: 1180px;

    margin: 0 auto;

    padding: 35px 24px 80px;
}

.deity-detail .breadcrumb {
    max-width: 1180px;

    margin: 0 auto 30px;

    padding: 0;

    justify-content: flex-end;
}

.deity-detail-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: 50px;

    align-items: center;

    margin-bottom: 60px;
}

.deity-detail-image {
    width: 100%;

    max-width: 650px;

    aspect-ratio: 4 / 3;

    margin: 0 auto;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #7d1426 58%,
            #3e030c 100%
        );

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.deity-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.deity-detail-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #7d1426 58%,
            #3e030c 100%
        );
}

.deity-detail-image-placeholder span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 110px;

    line-height: 1;

    color: #f3cf72;
}

.deity-detail-intro {
    padding: 10px 0;
}

.deity-detail-intro .section-kicker {
    margin-bottom: 12px;
}

.deity-detail-intro .deity-telugu {
    margin-bottom: 8px;

    color: #a67518;

    font-family:
        "Noto Sans Telugu",
        "Nirmala UI",
        Georgia,
        serif;

    font-size: 22px;

    font-weight: 600;

    line-height: 1.5;
}

.deity-detail-intro h1 {
    margin: 0 0 14px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.15;
}

.deity-detail-description {
    max-width: 620px;

    margin: 0;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;
}

.deity-detail-section {
    margin-bottom: 55px;
}

.deity-detail-section-heading {
    margin-bottom: 25px;
}

.deity-detail-section-heading .section-kicker {
    margin-bottom: 8px;
}

.deity-detail-section-heading h2 {
    margin: 0;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    line-height: 1.25;
}

.deity-significance {
    background: var(--cream);

    border: 1px solid var(--border);

    padding: 35px 40px;

    box-shadow:
        0 8px 25px rgba(80, 40, 10, .05);
}

.deity-significance .section-kicker {
    margin-bottom: 8px;
}

.deity-significance h2 {
    margin: 0 0 14px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;
}

.deity-significance p {
    margin: 0;

    color: var(--ink);

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}

.deity-stotra-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.deity-stotra-card {
    background: var(--paper);

    border: 1px solid var(--border);

    box-shadow:
        0 6px 22px rgba(80, 40, 10, .06);

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.deity-stotra-card:hover {
    transform: translateY(-4px);

    border-color: var(--gold);

    box-shadow: var(--shadow);
}

.deity-stotra-image {
    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #7d1426 58%,
            #3e030c 100%
        );
}

.deity-stotra-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.deity-stotra-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #f3cf72;

    font-size: 70px;
}

.deity-stotra-body {
    padding: 20px;
}

.deity-stotra-body .card-meta {
    margin-bottom: 8px;
}

.deity-stotra-body h3 {
    margin: 0 0 10px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.25;
}

.deity-stotra-body p {
    margin: 0 0 16px;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.65;
}

.deity-stotra-read-more {
    display: inline-block;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;
}

.deity-stotra-read-more:hover {
    color: var(--gold);
}

.deity-detail-actions {
    text-align: center;

    margin-top: 45px;
}

/* =========================================================
   HOME — EXPLORE BY DEITY
========================================================= */

.home-deity-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    margin-top: 36px;
}

.home-deity-card {
    display: block;

    text-decoration: none;

    color: inherit;

    background: #fffdf8;

    border: 1px solid #ead7b0;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.home-deity-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(80, 20, 20, .12);
}

.home-deity-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #5b0715;
}

.home-deity-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.home-deity-card:hover .home-deity-image img {
    transform: scale(1.04);
}

.home-deity-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #b36b25 0%,
            #78091b 55%,
            #4a0612 100%
        );

    color: #f2c75c;

    font-size: 64px;
}

.home-deity-body {
    padding: 18px 20px 20px;
}

.home-deity-telugu {
    color: #b47716;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 5px;
}

.home-deity-body h3 {
    margin: 0 0 14px;

    color: #720018;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.2;
}

.home-deity-link {
    display: inline-block;

    color: #8a0018;

    font-size: 13px;

    font-weight: 600;
}

/* =========================================================
   STOTRAS — BROWSE BY DEITY
========================================================= */

.hsj-stotra-deity-section {
    margin: 0 0 55px;
}

.hsj-stotra-section-heading {
    text-align: center;

    margin: 0 0 28px;
}

.hsj-stotra-section-heading h2 {
    margin: 5px 0 8px;

    color: #7b1717;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    line-height: 1.2;
}

.hsj-stotra-section-heading p {
    margin: 0 auto;

    max-width: 700px;

    color: #6b5750;

    font-size: 15px;

    line-height: 1.6;
}

.hsj-stotra-deity-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    width: 100%;

    margin: 32px auto 55px;
}

.hsj-stotra-deity-card {
    display: block;

    width: 100%;

    background: #fffdf8;

    border: 1px solid #e3c98f;

    border-radius: 14px;

    overflow: hidden;

    text-align: center;

    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(74, 0, 16, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.hsj-stotra-deity-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(74, 0, 16, .16);
}

.hsj-stotra-deity-image {
    width: 100%;

    height: 200px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #b98236 0%,
            #7b1717 48%,
            #4b0808 100%
        );
}

.hsj-stotra-deity-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform .35s ease;
}

.hsj-stotra-deity-card:hover .hsj-stotra-deity-image img {
    transform: scale(1.03);
}

.hsj-stotra-deity-om {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #f4d27a;

    font-size: 64px;

    font-family: Georgia, serif;
}

.hsj-stotra-deity-content {
    padding: 16px 12px 18px;

    background: #fffdf8;
}

.hsj-stotra-deity-content h3 {
    margin: 0;

    color: #7f1324;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.2;
}

.hsj-stotra-deity-telugu {
    margin-top: 7px;

    color: #b07a22;

    font-size: 17px;

    line-height: 1.4;
}

/* =========================================================
   STOTRA CATALOGUE
========================================================= */

.hsj-stotras-page {
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 24px 52px;
}

.hsj-stotras-hero-heading {
    padding-top: 10px;

    margin-bottom: 24px;
}

.hsj-stotra-catalogue {
    max-width: 980px;

    margin: 0 auto;
}

.hsj-stotra-category {
    margin: 0 0 10px;

    border: 1px solid var(--border);

    background: var(--paper);

    box-shadow:
        0 5px 20px rgba(80, 40, 10, .05);

    overflow: hidden;
}

.hsj-stotra-category summary {
    list-style: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 58px;

    padding: 10px 16px;

    color: var(--maroon);

    background:
        linear-gradient(
            90deg,
            #fffdf8 0%,
            #f9efd9 100%
        );
}

.hsj-stotra-category summary::-webkit-details-marker {
    display: none;
}

.hsj-category-arrow {
    width: 18px;

    color: var(--gold);

    font: 700 14px Arial, sans-serif;

    transition: transform .2s ease;
}

.hsj-stotra-category:not([open]) .hsj-category-arrow {
    transform: rotate(-90deg);
}

.hsj-category-title {
    display: flex;

    flex-direction: column;

    gap: 2px;

    flex: 1;
}

.hsj-category-title strong {
    font:
        700 18px/1.25
        Georgia,
        "Times New Roman",
        serif;

    color: var(--maroon);
}

.hsj-category-title small {
    color: #9a6a2f;

    font:
        13px/1.35
        Georgia,
        "Times New Roman",
        serif;
}

.hsj-category-count {
    min-width: 26px;

    height: 26px;

    padding: 0 8px;

    border-radius: 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #f3e4bf;

    color: var(--maroon);

    font: 700 11px Arial, sans-serif;
}

.hsj-stotra-list {
    border-top: 1px solid var(--border);
}

.hsj-stotra-list-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 11px 16px;

    border-bottom: 1px solid #eee4d4;

    background: #fffdf9;
}

.hsj-stotra-list-item:last-child {
    border-bottom: 0;
}

.hsj-stotra-list-item:hover {
    background: #fff8e9;
}

.hsj-stotra-list-title {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 3px;
}

.hsj-stotra-list-title a {
    color: var(--maroon);

    font:
        700 15px/1.35
        Georgia,
        "Times New Roman",
        serif;
}

.hsj-stotra-list-title a:hover {
    color: var(--gold);
}

.hsj-stotra-list-title span {
    color: #7c665f;

    font:
        13px/1.35
        Georgia,
        "Times New Roman",
        serif;
}

.hsj-stotra-list-action {
    flex: 0 0 auto;

    padding: 7px 12px;

    border: 1px solid var(--gold-soft);

    border-radius: 4px;

    color: var(--maroon) !important;

    background: #fff8e9;

    font:
        700 10px
        Arial,
        sans-serif !important;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.hsj-stotra-list-action:hover {
    color: #fff !important;

    background: var(--maroon);

    border-color: var(--maroon);
}

.hsj-stotra-empty {
    padding: 30px;

    text-align: center;

    color: var(--muted);

    background: var(--paper);

    border: 1px solid var(--border);
}

/* Hide retired navigation tabs */

.main-nav a[href="/mantras/"],
.main-nav a[href="/slokas/"],
.main-nav a[href="/deities/"] {
    display: none !important;
}

.footer-inner a[href="/mantras/"],
.footer-inner a[href="/slokas/"],
.footer-inner a[href="/deities/"] {
    display: none !important;
}

/* =========================================================
   ADMIN
========================================================= */

.hsj-stotra-admin-page {
    width: min(1180px, calc(100% - 40px));

    margin: 50px auto 70px;
}

.hsj-admin-card {
    background: #fffdf8;

    border: 1px solid #ead9b5;

    box-shadow:
        0 8px 30px rgba(80, 20, 20, .06);

    padding: 38px 42px;
}

.hsj-admin-login {
    max-width: 520px;

    margin: 60px auto;
}

.hsj-admin-kicker {
    color: #c99525;

    font: 700 11px Arial, sans-serif;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.hsj-admin-card h1 {
    margin: 0 0 10px;

    color: #650016;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    line-height: 1.2;
}

.hsj-admin-card > p,
.hsj-admin-heading-row p {
    color: #5d4b42;

    line-height: 1.7;

    margin-bottom: 25px;
}

.hsj-admin-heading-row {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    margin-bottom: 28px;
}

.hsj-admin-back {
    display: inline-block;

    background: #c99525;

    color: #fff;

    padding: 10px 18px;

    border-radius: 3px;

    white-space: nowrap;

    font: 700 13px Arial, sans-serif;
}

.hsj-admin-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}

.hsj-admin-field {
    width: 100%;

    margin-bottom: 22px;
}

.hsj-admin-field label {
    display: block;

    color: #650016;

    font-weight: 600;

    margin-bottom: 8px;
}

.hsj-admin-field label span {
    color: #a00000;
}

.hsj-admin-field label small {
    color: #777;

    font-weight: 400;
}

.hsj-admin-field input,
.hsj-admin-field select,
.hsj-admin-field textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d9c49a;

    background: #fff;

    color: #3d2b25;

    border-radius: 3px;

    font-family: inherit;

    font-size: 15px;

    padding: 11px 13px;
}

.hsj-admin-field input,
.hsj-admin-field select {
    min-height: 44px;
}

.hsj-admin-field textarea {
    min-height: 120px;

    line-height: 1.65;

    resize: vertical;
}

.hsj-admin-field textarea#lyrics {
    min-height: 420px;

    font-size: 16px;

    line-height: 1.8;
}

.hsj-admin-field input:focus,
.hsj-admin-field select:focus,
.hsj-admin-field textarea:focus {
    outline: none;

    border-color: #c99525;

    box-shadow:
        0 0 0 3px rgba(201, 149, 37, .12);
}

.hsj-admin-help {
    margin-top: 7px;

    color: #777;

    font: 13px/1.5 Arial, sans-serif;
}

.hsj-admin-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #ead9b5;
}

.hsj-admin-actions button,
.hsj-admin-actions a {
    display: inline-block;

    border: 0;

    border-radius: 3px;

    padding: 12px 22px;

    font: 700 14px Arial, sans-serif;

    text-decoration: none;

    cursor: pointer;
}

.hsj-admin-actions button {
    background: #650016;

    color: #fff;
}

.hsj-admin-actions button:hover {
    background: #80001c;
}

.hsj-admin-actions a {
    background: #eee3cf;

    color: #650016;
}

.hsj-admin-success,
.hsj-admin-error {
    padding: 14px 18px;

    margin-bottom: 24px;

    border-radius: 3px;

    line-height: 1.5;
}

.hsj-admin-success {
    background: #edf7ed;

    border: 1px solid #b9d8b9;

    color: #315b31;
}

.hsj-admin-error {
    background: #fff0f0;

    border: 1px solid #e2b5b5;

    color: #7a1f1f;
}

.hsj-admin-field select {
    appearance: auto;

    min-height: 46px;

    cursor: pointer;
}

.hsj-admin-field select option {
    padding: 8px;
}

/* =========================================================
   YOUTUBE PAGE
   FINAL CONSOLIDATED VERSION
========================================================= */

.youtube-page {
    max-width: 1220px;

    margin: 0 auto;

    padding: 70px 24px 80px;
}

.youtube-page-heading {
    text-align: center;

    margin-bottom: 42px;
}

.youtube-page-heading .section-kicker {
    margin-bottom: 10px;
}

.youtube-page-heading h1 {
    margin: 0 0 14px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1.15;
}

.youtube-page-heading p {
    margin: 0 auto;

    max-width: 700px;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;
}

/* =========================================================
   YOUTUBE FILTER PANEL
========================================================= */

.youtube-filters {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto 30px;

    padding: 22px 26px;

    background: var(--paper);

    border: 1px solid var(--border);

    box-shadow:
        0 6px 22px rgba(80, 40, 10, .06);
}

.youtube-filter-group {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 8px 0;
}

.youtube-filter-group + .youtube-filter-group {
    margin-top: 10px;

    padding-top: 18px;

    border-top: 1px solid #eee3d0;
}

.youtube-filter-label {
    flex: 0 0 160px;

    padding-top: 8px;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;
}

.youtube-filter-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.youtube-filter {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 15px;

    border: 1px solid var(--gold-soft);

    border-radius: 3px;

    background: #fffaf0;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.youtube-filter:hover {
    background: var(--cream);

    border-color: var(--gold);

    color: var(--maroon);

    transform: translateY(-1px);
}

.youtube-filter.active {
    background: var(--maroon);

    border-color: var(--maroon);

    color: #fff;
}

/* =========================================================
   ACTIVE YOUTUBE FILTER
========================================================= */

.youtube-active-filter {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto 25px;

    padding: 11px 15px;

    background: #f8efd9;

    border-left: 3px solid var(--gold);

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.5;
}

.youtube-active-filter strong {
    color: var(--maroon);
}

.youtube-active-filter a {
    margin-left: 12px;

    color: var(--maroon);

    font-weight: 700;
}

/* =========================================================
   YOUTUBE GRID
========================================================= */

/* =========================================================
   YOUTUBE GRID
   Desktop: 4 columns
   ========================================================= */

.youtube-grid {
    width: 100%;

    max-width: 1220px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 24px;

    align-items: start;
}

/* =========================================================
   YOUTUBE CARD
========================================================= */

.youtube-card {
    min-width: 0;

    background: var(--paper);

    border: 1px solid var(--border);

    overflow: hidden;

    box-shadow:
        0 7px 25px rgba(70, 30, 20, .07);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.youtube-card:hover {
    transform: translateY(-4px);

    border-color: var(--gold);

    box-shadow:
        0 14px 32px rgba(70, 30, 20, .12);
}

/* =========================================================
   YOUTUBE MEDIA
========================================================= */

.youtube-card-media {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #7d1426 58%,
            #3e030c 100%
        );

    text-decoration: none;
}

.youtube-card-media img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.youtube-card:hover .youtube-card-media img {
    transform: scale(1.035);
}

/* =========================================================
   YOUTUBE PLAY BUTTON
========================================================= */

.youtube-play-button {
    position: absolute;

    left: 50%;

    top: 50%;

    width: 42px;

    height: 30px;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ff0000;

    border-radius: 11px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .25);

    transition:
        transform .2s ease;
}

.youtube-play-button span {
    display: block;

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 22px;

    line-height: 1;

    margin-left: 3px;
}

.youtube-card:hover .youtube-play-button {
    transform:
        translate(-50%, -50%)
        scale(1.08);
}

/* =========================================================
   YOUTUBE PLACEHOLDER
========================================================= */

.youtube-thumbnail-placeholder {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #c99b3a 0%,
            #7d1426 58%,
            #3e030c 100%
        );
}

.youtube-thumbnail-placeholder span {
    color: #f3cf72;

    font-size: 80px;
}

/* =========================================================
   YOUTUBE BODY
========================================================= */

.youtube-card-body {
    padding: 20px 21px 22px;

    background: var(--paper);
}

.youtube-card-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 8px;

    color: #9b6f23;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.youtube-meta-separator {
    color: #c7a45b;
}

.youtube-card h2 {
    margin: 0 0 10px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    line-height: 1.35;
}

.youtube-card p {
    margin: 0 0 17px;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.65;
}

.youtube-watch-link {
    display: inline-block;

    color: var(--maroon);

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}

.youtube-watch-link:hover {
    color: var(--gold);
}

/* =========================================================
   YOUTUBE EMPTY STATE
========================================================= */

.youtube-empty {
    max-width: 800px;

    margin: 30px auto 0;

    padding: 65px 30px;

    text-align: center;

    background: var(--paper);

    border: 1px solid var(--border);

    box-shadow:
        0 8px 25px rgba(80, 40, 10, .05);
}

.youtube-empty-om {
    color: var(--gold);

    font-size: 70px;

    line-height: 1;

    margin-bottom: 15px;
}

.youtube-empty h2 {
    margin: 0 0 10px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
}

.youtube-empty p {
    margin: 0 auto 25px;

    color: var(--muted);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 10px;

        font-size: 11px;
    }

    .section > .deity-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .section > .deity-grid .deity-image {
        height: 150px;
    }

    .stotra-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .youtube-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .stotra-detail-header {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 20px;
    }

    .stotra-detail-image {
        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }

    .stotra-detail-intro {
        text-align: center;
    }

    .stotra-description {
        margin-left: auto;

        margin-right: auto;
    }

    .stotra-detail-intro .card-meta {
        text-align: center;
    }

    .panchang-preview {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .deity-detail {
        padding: 25px 20px 60px;
    }

    .deity-detail-header {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .deity-detail-image {
        max-width: 700px;
    }

    .deity-detail-intro {
        text-align: center;
    }

    .deity-detail-description {
        margin-left: auto;

        margin-right: auto;
    }

    .deity-stotra-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .deity-detail .breadcrumb {
        justify-content: center;
    }

    .home-deity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hsj-stotra-deity-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

/* =========================================================
   RESPONSIVE — 820px
========================================================= */

@media (max-width: 820px) {

    .topbar-note {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .main-nav {
        display: none;

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-top: 1px solid var(--border);

        padding-top: 8px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 11px 5px;
    }

    .header-main {
        flex-wrap: wrap;
    }

    .youtube-filter-group {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .youtube-filter-label {
        flex: none;

        padding-top: 0;
    }

    .footer-inner {
        grid-template-columns:
            1fr 1fr;
    }

    .youtube-inner,
    .horoscope-banner {
        flex-direction: column;

        align-items: flex-start;
    }

    .hsj-admin-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .hsj-admin-heading-row {
        flex-direction: column;

        gap: 15px;
    }

    .hsj-admin-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hsj-admin-actions button,
    .hsj-admin-actions a {
        width: 100%;

        box-sizing: border-box;

        text-align: center;
    }
}

/* =========================================================
   RESPONSIVE — 800px
========================================================= */

@media (max-width: 800px) {

    .section > .deity-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 14px;
    }

    .section > .deity-grid .deity-image {
        height: 145px;
    }

    .section > .deity-grid .deity-card-body {
        padding: 9px 6px 11px;
    }

    .section > .deity-grid .deity-card-body h2 {
        font-size: 17px;
    }

    .section > .deity-grid .deity-telugu {
        font-size: 12px;
    }

    .hsj-stotra-deity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .hsj-stotra-deity-image {
        height: 200px;
    }

    .hsj-category-title strong {
        font-size: 14px;
    }

    .hsj-category-title small {
        font-size: 12px;
    }
}

/* =========================================================
   RESPONSIVE — 650px
========================================================= */

@media (max-width: 650px) {

    .stotra-detail {
        padding: 5px 18px 55px;
    }

    .stotra-detail-header {
        margin-bottom: 40px;
    }

    .stotra-detail-image,
    .stotra-detail-image img,
    .detail-image-placeholder {
        min-height: 280px;
    }

    .detail-image-placeholder span {
        font-size: 85px;
    }

    .stotra-detail-intro h1 {
        font-size: 34px;
    }

    .stotra-detail-intro h2 {
        font-size: 21px;
    }

    .stotra-description {
        font-size: 12px;

        line-height: 1.7;
    }

    .stotra-purpose,
    .stotra-lyrics {
        padding: 28px 22px;

        margin-bottom: 35px;
    }

    .stotra-purpose h2,
    .stotra-lyrics h2 {
        font-size: 27px;
    }

    .lyrics-content {
        padding: 25px 20px;

        font-size: 14px;

        line-height: 1.9;
    }

    .stotra-youtube {
        padding: 30px 22px;

        margin-bottom: 35px;
    }

    .stotra-youtube h2 {
        font-size: 26px;
    }

    .stotra-youtube p {
        min-width: 100%;
    }

    .stotra-youtube .button {
        width: 100%;
    }

    .breadcrumb {
        font-size: 13px;

        padding: 0 10px;
    }
}

/* =========================================================
   RESPONSIVE — 600px
========================================================= */

@media (max-width: 600px) {

    .youtube-page {
        padding:
            50px 18px 55px;
    }

    .youtube-page-heading h1 {
        font-size: 34px;
    }

    .youtube-page-heading p {
        font-size: 13px;
    }

    .youtube-filters {
        padding:
            17px 15px;
    }

    .youtube-filter {
        padding:
            7px 11px;

        font-size: 10px;
    }

    .youtube-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .youtube-card h2 {
        font-size: 21px;
    }

    .youtube-card-body {
        padding: 18px;
    }

    .youtube-active-filter {
        font-size: 12px;
    }

    .hsj-stotra-deity-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 40px;
    }

    .hsj-stotra-deity-image {
        height: 210px;
    }

    .hsj-stotra-deity-content h3 {
        font-size: 21px;
    }

    .hsj-stotra-deity-content p,
    .hsj-stotra-deity-telugu {
        font-size: 14px;
    }

    .hsj-stotra-list-item {
        align-items: flex-start;

        padding: 13px 14px;
    }

    .hsj-stotra-list-title a {
        font-size: 14px;
    }

    .hsj-stotra-list-title span {
        font-size: 12px;
    }

    .hsj-stotra-list-action {
        padding: 6px 8px;

        font-size: 9px !important;
    }

    .hsj-stotras-page {
        padding:
            0 14px 40px;
    }

    .hsj-strota-category summary {
        min-height: 54px;

        padding: 9px 12px;

        gap: 9px;
    }

    .home-deity-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .home-deity-image {
        aspect-ratio: 16 / 9;
    }

    .deity-detail {
        padding:
            15px 18px 50px;
    }

    .deity-detail-header {
        margin-bottom: 40px;
    }

    .deity-detail-image {
        aspect-ratio: 4 / 3;
    }

    .deity-detail-intro .deity-telugu {
        font-size: 19px;
    }

    .deity-detail-intro h1 {
        font-size: 34px;
    }

    .deity-detail-description {
        font-size: 12px;

        line-height: 1.7;
    }

    .deity-significance {
        padding: 28px 22px;
    }

    .deity-significance h2 {
        font-size: 27px;
    }

    .deity-stotra-grid {
        grid-template-columns: 1fr;
    }

    .deity-detail-section-heading h2 {
        font-size: 28px;
    }
}

/* =========================================================
   RESPONSIVE — 560px
========================================================= */

@media (max-width: 560px) {

    .header-main {
        padding: 10px 18px;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand-mark {
        font-size: 44px;
    }

    .hero {
        min-height: 520px;
    }

    .hero p {
        font-size: 14px;
    }

    .section {
        padding:
            55px 18px;
    }

    .section-heading h2,
    .panchang-copy h2,
    .youtube-inner h2,
    .horoscope-banner h2 {
        font-size: 30px;
    }

    .section > .deity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .section > .deity-grid .deity-image {
        height: 125px;
    }

    .section > .deity-grid .deity-card-body {
        padding: 8px 5px 10px;
    }

    .section > .deity-grid .deity-card-body h2 {
        font-size: 14px;
    }

    .section > .deity-grid .deity-telugu {
        font-size: 11px;
    }

    .stotra-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .panchang-items {
        grid-template-columns: 1fr;
    }

    .daily-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .daily-inner .button {
        margin-left: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

    .hsj-stotra-deity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .hsj-stotra-deity-image {
        height: 210px;
    }

    .hsj-stotra-deity-content {
        padding: 12px 10px 14px;
    }

    .hsj-stotra-deity-content h3 {
        font-size: 14px;
    }

    .hsj-stotra-deity-telugu {
        font-size: 12px;
    }

    .hsj-admin-card {
        padding: 24px 18px;
    }

    .hsj-admin-card h1 {
        font-size: 28px;
    }

    .hsj-stotra-category summary {
        min-height: 54px;

        padding: 9px 12px;

        gap: 9px;
    }

    .hsj-category-title strong {
        font-size: 14px;
    }

    .hsj-category-title small {
        font-size: 12px;
    }
}

/* =========================================================
   IMPORTANT:
   Panchang Moonset is DATA, NOT CSS.
   
   Do not add a CSS rule to replace "Will be calculated".
   The actual Moonset value must come from the Panchang
   calculation/PHP data source.
========================================================= */