/*
Theme Name:         Thammana & Associates
Theme URI:          https://thammanaassociates.com
Description:        Thammana & Associates — Chartered Accountants, Srikakulam. A professional child theme for the Blocksy WordPress theme. All header, footer, and responsive behaviour is managed through the Blocksy Customizer.
Author:             Thammana & Associates
Template:           blocksy
Version:            1.0.0
Tags:               professional, chartered-accountants, business
Text Domain:        thammana-associates
*/

/* ============================================================
   BRAND COLOUR PALETTE
   Primary   : Deep Navy Blue  — hsl(204, 74%, 30%) = #145885
   Secondary : Gold/Amber      — hsl(46,  65%, 52%) = #D4B035
   Muted bg  : Light blue-grey — hsl(220, 20%, 96%)
   Foreground: Dark blue-black — hsl(220, 50%, 10%)
   ============================================================ */
:root {
    --ta-primary:    #145885;
    --ta-secondary:  #D4B035;
    --ta-muted-bg:   #f2f4f8;
    --ta-foreground: #0a1229;
    --ta-muted-text: #4a5568;
    --ta-border:     #dde3ee;
}

/* ---------- Global Typography ---------- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--ta-foreground);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

/* ---------- Blocksy colour overrides ---------- */
/* These override Blocksy CSS variables so your brand colours
   apply everywhere the theme uses its palette variables.      */
:root {
    --theme-palette-color-1: #145885;
    --theme-palette-color-2: #D4B035;
    --theme-palette-color-3: #0a1229;
    --theme-palette-color-4: #4a5568;
    --theme-palette-color-5: #f2f4f8;
    --theme-palette-color-6: #dde3ee;
}

/* ---------- Utility helpers used across page templates ---------- */
.ta-hero {
    background-color: var(--ta-primary);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ta-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    mix-blend-mode: overlay;
}

.ta-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.ta-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.ta-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 640px;
}

.ta-page-header {
    background-color: var(--ta-primary);
    color: #ffffff;
    padding: 60px 0 50px;
}

.ta-page-header h1 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.ta-page-header p {
    opacity: 0.82;
    max-width: 560px;
    font-size: 1.05rem;
    text-align: left;
}

/* ---------- Buttons ---------- */
.ta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--ta-secondary);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border: none;
    cursor: pointer;
}

.ta-btn-primary:hover {
    opacity: 0.9;
    color: #ffffff;
    text-decoration: none;
}

.ta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 0.72rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.2s ease;
    cursor: pointer;
}

.ta-btn-outline:hover {
    background-color: rgba(255,255,255,0.12);
    color: #ffffff;
    text-decoration: none;
}

.ta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: transparent;
    color: var(--ta-primary);
    font-weight: 600;
    padding: 0.72rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--ta-primary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.ta-btn-secondary:hover {
    background-color: var(--ta-primary);
    color: #ffffff;
    text-decoration: none;
}

/* ---------- Cards & Sections ---------- */
.ta-section {
    padding: 72px 0;
}

.ta-section-alt {
    padding: 72px 0;
    background-color: var(--ta-muted-bg);
}

.ta-section-dark {
    padding: 72px 0;
    background-color: var(--ta-primary);
    color: #ffffff;
    text-align: center;
}

.ta-section-dark h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

.ta-section-dark p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ta-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.ta-section-title h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--ta-foreground);
    margin-bottom: 0.75rem;
}

.ta-section-title p {
    color: var(--ta-muted-text);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ta-card {
    background: #ffffff;
    border: 1px solid var(--ta-border);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
}

.ta-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.ta-card-icon {
    background-color: rgba(20,88,133,0.1);
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--ta-primary);
}

.ta-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.ta-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* ---------- Professional values box ---------- */
.ta-values-box {
    background-color: var(--ta-muted-bg);
    border: 1px solid var(--ta-border);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ta-values-box h3 {
    color: var(--ta-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.ta-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ta-value-icon {
    background-color: rgba(20,88,133,0.1);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ta-primary);
    font-weight: bold;
    font-size: 0.85rem;
}

.ta-value-item h4 {
    font-size: 0.95rem;
    margin: 0 0 0.2rem;
    color: var(--ta-foreground);
}

.ta-value-item p {
    font-size: 0.85rem;
    color: var(--ta-muted-text);
    margin: 0;
    text-align: left;
}

/* ---------- Service cards ---------- */
.ta-service-card {
    background: #ffffff;
    border: 1px solid var(--ta-border);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.75rem;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.ta-service-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
}

.ta-service-card-inner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ta-service-stripe {
    width: 4px;
    background-color: var(--ta-primary);
    border-radius: 4px;
    align-self: stretch;
    flex-shrink: 0;
}

.ta-service-card h2 {
    font-size: 1.35rem;
    color: var(--ta-primary);
    margin-bottom: 0.75rem;
}

.ta-service-card p {
    color: var(--ta-muted-text);
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.ta-service-points {
    background-color: var(--ta-muted-bg);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
}

.ta-service-points h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ta-foreground);
    margin-bottom: 1rem;
}

.ta-service-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
}

.ta-service-points ul li {
    font-size: 0.88rem;
    color: var(--ta-muted-text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ta-service-points ul li::before {
    content: '✔';
    color: var(--ta-secondary);
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.ta-highlight-box {
    background: #fffbeb;
    border: 1px solid #f0d080;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.83rem;
    color: #7a5a00;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ta-highlight-box::before {
    content: 'ℹ';
    flex-shrink: 0;
    font-weight: bold;
    color: #c9930a;
}

/* ---------- About page ---------- */
.ta-about-sidebar {
    position: sticky;
    top: 100px;
}

.ta-sidebar-box {
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ta-sidebar-box-primary {
    background-color: var(--ta-primary);
    color: #ffffff;
}

.ta-sidebar-box-primary h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ta-sidebar-box-primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-sidebar-box-primary ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.88);
}

.ta-sidebar-box-primary ul li:last-child {
    border-bottom: none;
}

.ta-sidebar-box-bordered {
    border: 1px solid var(--ta-border);
    background: #ffffff;
}

.ta-sidebar-box-bordered h3 {
    color: var(--ta-foreground);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ta-sidebar-box-bordered ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-sidebar-box-bordered ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--ta-muted-text);
}

.ta-pro-photo {
    width: 128px;
    height: 160px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid var(--ta-border);
    flex-shrink: 0;
}

.ta-pro-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ta-pro-section h3 {
    color: var(--ta-primary);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.ta-frn-box {
    background: var(--ta-muted-bg);
    border: 1px solid var(--ta-border);
    border-radius: 6px;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    color: var(--ta-muted-text);
    margin-top: 1rem;
}

.ta-section-divider {
    border: none;
    border-bottom: 2px solid var(--ta-border);
    margin-bottom: 1.5rem;
}

.ta-section-heading {
    font-size: 1.35rem;
    color: var(--ta-foreground);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ta-border);
    margin-bottom: 1.5rem;
}

/* ---------- Contact page ---------- */
.ta-contact-icon-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ta-contact-icon {
    background-color: rgba(20,88,133,0.1);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ta-primary);
    font-size: 1.1rem;
}

.ta-contact-icon-box h3 {
    font-size: 0.95rem;
    color: var(--ta-foreground);
    margin: 0 0 0.2rem;
}

.ta-contact-icon-box p,
.ta-contact-icon-box a {
    font-size: 0.9rem;
    color: var(--ta-muted-text);
    margin: 0;
    text-align: left;
    text-decoration: none;
}

.ta-contact-icon-box a:hover {
    color: var(--ta-primary);
}

.ta-form-card {
    background: #ffffff;
    border: 1px solid var(--ta-border);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.ta-form-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.ta-disclaimer {
    font-size: 0.83rem;
    color: var(--ta-muted-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: left;
}

/* ---------- Map embed ---------- */
.ta-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ta-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ---------- Blog listing ---------- */
.ta-blog-card {
    background: #ffffff;
    border: 1px solid var(--ta-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.ta-blog-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.ta-blog-card-stripe {
    height: 4px;
    background: linear-gradient(90deg, #145885, #1e80c0);
}

.ta-blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ta-blog-tag {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--ta-primary);
    margin-bottom: 0.75rem;
}

.ta-blog-card h2 {
    font-size: 1rem;
    line-height: 1.45;
    color: var(--ta-foreground);
    margin-bottom: 0.75rem;
    transition: color 0.15s ease;
}

.ta-blog-card:hover h2 {
    color: var(--ta-primary);
}

.ta-blog-card p {
    font-size: 0.87rem;
    color: var(--ta-muted-text);
    line-height: 1.65;
    flex: 1;
    text-align: left;
}

.ta-read-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ta-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.25rem;
}

.ta-read-link:hover {
    text-decoration: underline;
    color: var(--ta-primary);
}

/* ---------- CTA bottom section ---------- */
.ta-cta-box {
    background-color: rgba(20,88,133,0.06);
    border: 1px solid rgba(20,88,133,0.18);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.ta-cta-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.ta-cta-box p {
    color: var(--ta-muted-text);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ta-cta-box .ta-btn-primary {
    background-color: var(--ta-primary);
}

/* ---------- Office hours table ---------- */
.ta-hours-table {
    font-size: 0.9rem;
    width: 100%;
    max-width: 320px;
    border-collapse: collapse;
}

.ta-hours-table td {
    padding: 0.35rem 0;
    color: var(--ta-muted-text);
}

.ta-hours-table td:first-child {
    font-weight: 600;
    color: var(--ta-foreground);
    padding-right: 1.5rem;
}

/* ---------- Mission value cards ---------- */
.ta-mission-card {
    background-color: var(--ta-muted-bg);
    border: 1px solid var(--ta-border);
    border-radius: 8px;
    padding: 1.5rem;
}

.ta-mission-card .ta-mission-icon {
    color: var(--ta-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.ta-mission-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.ta-mission-card p {
    font-size: 0.88rem;
    color: var(--ta-muted-text);
    text-align: left;
}

/* ---------- Past experience list ---------- */
.ta-exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-exp-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: var(--ta-muted-text);
}

.ta-exp-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--ta-primary);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ---------- Home overview section ---------- */
.ta-overview-text p {
    color: var(--ta-muted-text);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.ta-overview-text h2 {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
}

/* ---------- Blog single post ---------- */
.ta-post-content {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

.ta-post-content h2 {
    font-size: 1.4rem;
    color: var(--ta-primary);
    margin: 2rem 0 0.75rem;
}

.ta-post-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

.ta-post-content th {
    background-color: var(--ta-primary);
    color: #ffffff;
    padding: 0.6rem 1rem;
    text-align: left;
}

.ta-post-content td {
    border: 1px solid var(--ta-border);
    padding: 0.55rem 1rem;
    color: var(--ta-muted-text);
}

.ta-post-content tr:nth-child(even) td {
    background-color: var(--ta-muted-bg);
}

.ta-post-content blockquote {
    border-left: 4px solid var(--ta-primary);
    padding-left: 1.25rem;
    color: var(--ta-muted-text);
    font-style: italic;
    margin: 1.5rem 0;
}

/* ── Responsive helpers ──────────────────────────────────────
   Blocksy handles overall responsive layout. These are only
   minor utility overrides for our custom content containers. */
@media (max-width: 767px) {
    .ta-pro-section {
        flex-direction: column;
    }

    .ta-about-layout {
        flex-direction: column;
    }
}


/* ===================================================================
   MOBILE RESPONSIVE — added by Antigravity 2026-06-19
   =================================================================== */

@media (max-width: 767px) {

    /* Hero section: reduce padding on mobile */
    .ta-hero {
        padding: 48px 0;
    }
    .ta-hero h1 {
        font-size: 1.55rem;
        line-height: 1.3;
    }
    .ta-hero p {
        font-size: 0.95rem;
    }

    /* Section padding: tighter on mobile */
    .ta-section,
    .ta-section-alt,
    .ta-section-dark {
        padding: 48px 0;
    }
    .ta-section-dark h2 {
        font-size: 1.4rem;
    }
    .ta-section-dark p {
        font-size: 0.95rem;
    }

    /* Map: shorter on mobile */
    .ta-map-wrapper {
        height: 260px;
    }

    /* Services/About: full-width flex items */
    .ta-pro-grid {
        grid-template-columns: 1fr;
    }

    /* Contact page form/info layout */
    .ta-contact-grid {
        grid-template-columns: 1fr;
    }

    /* Blog grid */
    .ta-blog-grid {
        grid-template-columns: 1fr;
    }

    /* CTA buttons: stack vertically */
    .ta-hero [style*="display:flex"] {
        flex-direction: column !important;
    }
    .ta-btn-primary,
    .ta-btn-outline,
    .ta-btn-secondary {
        display: block;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ta-hero {
        padding: 36px 0;
    }
    .ta-hero h1 {
        font-size: 1.35rem;
    }
    .ta-section-title h2 {
        font-size: 1.3rem;
    }
    .ta-card {
        padding: 1.25rem;
    }
}


/* ===================================================================
   BLOG POST SINGLE — Replit-matched styling
   =================================================================== */

/* Single post page: constrain content width like Replit max-w-4xl */
.single-post .entry-content,
.single-post .wp-block-group.is-layout-constrained {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Headings inside post body: Merriweather serif */
.single-post .entry-content h2.wp-block-heading {
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post .entry-content h3.wp-block-heading {
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #145885;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.single-post .entry-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.single-post .entry-content ul li {
    margin-bottom: 0.35rem;
    list-style: disc;
}

.single-post .entry-content ol li {
    margin-bottom: 0.35rem;
    list-style: decimal;
}

/* Gutenberg block list override */
.single-post .wp-block-list li {
    color: #475569;
    font-size: 15px;
}

/* Tables inside posts */
.single-post .entry-content table,
.single-post figure.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.single-post .entry-content table thead th,
.single-post figure.wp-block-table table thead th {
    background: #145885;
    color: #ffffff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}

.single-post .entry-content table tbody tr:nth-child(even),
.single-post figure.wp-block-table table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.single-post .entry-content table tbody td,
.single-post figure.wp-block-table table tbody td {
    padding: 9px 12px;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

/* Mobile: make tables scrollable */
.single-post figure.wp-block-table,
.wp-block-html figure.wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
    .single-post .entry-content h2.wp-block-heading {
        font-size: 1.15rem;
    }
    .single-post .entry-content h3.wp-block-heading {
        font-size: 1rem;
    }
    .single-post .entry-content p,
    .single-post .wp-block-list li {
        font-size: 14px;
    }
}
