:root {
    --tm-bg: #f7f1e6;
    --tm-paper: #fffdf8;
    --tm-ink: #302b27;
    --tm-muted: #766e65;
    --tm-saffron: #a85e24;
    --tm-gold: #bd9548;
    --tm-border: #dfd4c4;
}

.tm-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px 80px;
    background: radial-gradient(circle at top left, #efdcb9, transparent 35%),
                radial-gradient(circle at bottom right, #d9e6d1, transparent 35%),
                var(--tm-bg);
    color: var(--tm-ink);
    line-height: 2;
    font-family: "Noto Serif Tamil", "Noto Sans Tamil", "Latha", serif;
    border-radius: 8px;
}

/* BREADCRUMB */
.tm-breadcrumb {
    font-family: "Noto Sans Tamil", sans-serif;
    font-size: 13px;
    color: var(--tm-muted);
    margin-bottom: 30px;
}
.tm-breadcrumb span { color: var(--tm-saffron); }

/* ARTICLE HEADER */
.tm-header { text-align: center; margin-bottom: 50px; }
.tm-eyebrow {
    display: inline-block;
    font-family: "Noto Sans Tamil", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--tm-saffron);
    border-bottom: 1px solid var(--tm-gold);
    padding-bottom: 8px;
    margin-bottom: 20px;
}
.tm-header h1 { font-size: clamp(32px, 5vw, 56px); margin: 0; font-weight: 500; }
.tm-tantra { font-size: 23px; color: var(--tm-saffron); margin-top: 12px; }
.tm-verse-number {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 22px;
    border: 1px solid var(--tm-gold);
    border-radius: 30px;
    font-family: "Noto Sans Tamil", sans-serif;
    font-size: 14px;
    color: var(--tm-muted);
}

/* IMAGE PLACEHOLDER */
.tm-verse-image {
    width: 100%;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* CONTENT CARD */
.tm-card {
    background: rgba(255,253,248,.9);
    border: 1px solid var(--tm-border);
    padding: clamp(25px, 5vw, 60px);
    margin-bottom: 30px;
    border-radius: 6px;
}

/* SECTION LABEL */
.tm-label {
    font-family: "Noto Sans Tamil", sans-serif;
    font-size: 14px;
    color: var(--tm-saffron);
    margin-bottom: 20px;
    font-weight: bold;
}

/* ORIGINAL VERSE */
.tm-original {
    font-size: clamp(20px, 3.5vw, 32px);
    line-height: 2;
    text-align: center;
    padding: 30px 10px;
    border-top: 1px solid var(--tm-border);
    border-bottom: 1px solid var(--tm-border);
}

/* MEANING */
.tm-meaning { font-size: clamp(17px, 2vw, 20px); color: #49423c; }

/* AUDIO */
.tm-audio-section {
    background: #30342e;
    color: white;
    padding: 35px;
    margin: 40px 0;
    border-radius: 6px;
}
.tm-audio-section h3 { margin: 0 0 8px; font-size: 22px; font-weight: normal; color: #fff; }
.tm-audio-section p { margin: 0 0 20px; color: #d5d7d0; font-size: 15px; }
.tm-audio-section audio { width: 100%; }

/* FOOTER */
.tm-footer {
    text-align: center;
    margin-top: 60px;
    color: var(--tm-muted);
    font-size: 14px;
}