/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/



/*
 * Custom homepage compatibility fixes.
 */


    :root {
      --ink: #132a2f;
      --muted: #607278;
      --brand: #0f4c5c;
      --brand-dark: #0a3742;
      --brand-soft: #e8f3f4;
      --accent: #e4a853;
      --accent-dark: #b97821;
      --surface: #ffffff;
      --surface-alt: #f6f9f8;
      --line: #dce6e5;
      --success: #237a57;
      --shadow: 0 22px 60px rgba(15, 76, 92, 0.12);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 34px;
      --container: 1200px;
    }

    * { box-sizing: border-box; }
    .skip-link {
      position: fixed;
      left: 14px;
      top: -80px;
      z-index: 2000;
      padding: 12px 18px;
      border-radius: 10px;
      color: #fff;
      background: var(--brand-dark);
      font-weight: 800;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 14px; }
    :focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
    [id] { scroll-margin-top: 100px; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--surface);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.72;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    h1, h2, h3, h4 { margin: 0 0 18px; line-height: 1.15; letter-spacing: -0.03em; }
    h1, h2 { font-family: "Playfair Display", Georgia, serif; }
    h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
    h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
    h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
    p { margin: 0 0 18px; }
    ul { padding-left: 20px; }
    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .section { padding: 108px 0; }
    .section-sm { padding: 72px 0; }
    .surface-alt { background: var(--surface-alt); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--brand);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); }
    .section-head { max-width: 780px; margin-bottom: 48px; }
    .section-head.center { margin-inline: auto; text-align: center; }
    .lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); }
    .muted { color: var(--muted); }
    .grid { display: grid; gap: 24px; }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: 0 12px 36px rgba(20, 55, 62, .06);
    }
    .card { transition: transform .25s ease, box-shadow .25s ease; }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .icon {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 22px;
      border-radius: 16px;
      color: var(--brand);
      background: var(--brand-soft);
      font-weight: 800;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 14px 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-weight: 800;
      cursor: pointer;
      transition: .2s ease;
    }
/*    .btn:hover { background: var(--brand-dark); transform: translateY(-2px); }*/
    .btn-outline { color: var(--brand); background: transparent; border-color: var(--brand); }
    .btn-outline:hover { color: #fff; background: var(--brand); }
    .btn-light { color: var(--brand); background: #fff; }
    .btn-light:hover { color: #fff; background: var(--accent-dark); }
    .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

    .topbar { padding: 9px 0; color: #fff; background: var(--brand-dark); font-size: .88rem; }
    .topbar-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
    .topbar a { color: #fff; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(220,230,229,.85);
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(16px);
    }
    .nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
    .brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: var(--brand); }
    .brand small { display: block; color: var(--muted); font-size: .72rem; font-weight: 600; }
    .nav-links { display: flex; align-items: center; gap: 24px; font-size: .93rem; font-weight: 700; }
    .nav-links a:hover { color: var(--brand); }
    .menu-toggle { display: none; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 780px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(247,250,249,.98) 0%, rgba(247,250,249,.92) 46%, rgba(247,250,249,.25) 72%),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=2000&q=85') center right / cover no-repeat;
    }
    .hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -250px; top: -220px; border-radius: 50%; background: rgba(228,168,83,.14); }
    .hero-content { position: relative; max-width: 760px; padding: 100px 0; }
    .hero h1 span { color: var(--brand); }
    .hero-copy { max-width: 700px; color: #476168; font-size: clamp(1.08rem, 2vw, 1.28rem); }
    .hero-points { display: flex; flex-wrap: wrap; gap: 11px; margin: 30px 0 0; padding: 0; list-style: none; }
    .hero-points li { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.85); font-size: .88rem; font-weight: 700; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 680px; margin-top: 38px; }
    .hero-stat { padding: 18px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.78); }
    .hero-stat strong { display: block; font-size: 1.35rem; }
    .hero-stat span { color: var(--muted); font-size: .85rem; }

    .logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
    .logo-items { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; text-align: center; color: #496267; font-weight: 800; }
    .logo-items span { padding: 18px 8px; }

    .split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
    .media-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
    .media-frame img { width: 100%; min-height: 520px; object-fit: cover; }
    .floating-note { position: absolute; right: 24px; bottom: 24px; max-width: 260px; padding: 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
    .check-list { display: grid; gap: 13px; margin: 26px 0; padding: 0; list-style: none; }
    .check-list li { display: flex; gap: 12px; align-items: flex-start; }
    .check-list li::before { content: "✓"; flex: 0 0 26px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #fff; background: var(--success); font-size: .8rem; font-weight: 900; }

    .service-card h3 { min-height: 56px; }
    .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    /*.tag { padding: 7px 10px; border-radius: 999px; color: var(--brand); background: var(--brand-soft); font-size: .76rem; font-weight: 700; }*/

    .feature-band { overflow: hidden; color: #fff; background: var(--brand); }
    .feature-band .lead { color: #d5e8eb; }
    .feature-band .card { color: var(--ink); }

    .process { counter-reset: process; }
    .process-card { position: relative; padding-top: 70px; }
    .process-card::before { counter-increment: process; content: "0" counter(process); position: absolute; top: 24px; left: 28px; color: var(--accent-dark); font-size: 1.55rem; font-weight: 900; }

    .portfolio-card { overflow: hidden; padding: 0; }
    .portfolio-card img { width: 100%; height: 280px; object-fit: cover; }
    .portfolio-card .content { padding: 28px; }
    .portfolio-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; color: var(--brand); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

    .industry-card { min-height: 100%; }
    .industry-card p { color: var(--muted); }

    .stack { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .stack span { padding: 13px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-weight: 800; }

    .testimonial { position: relative; }
    .testimonial::before { content: "“"; position: absolute; right: 24px; top: 4px; color: var(--brand-soft); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
    .stars { color: var(--accent-dark); letter-spacing: .15em; }
    .person { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
    .avatar { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; background: var(--brand); font-weight: 900; }

    .pricing-card.featured { border: 2px solid var(--brand); transform: translateY(-12px); }
    .price { margin: 12px 0 20px; font-size: 2.4rem; font-weight: 900; }
    .price small { color: var(--muted); font-size: .9rem; font-weight: 500; }

    .faq { max-width: 920px; margin-inline: auto; }
    details { border-bottom: 1px solid var(--line); }
    summary { position: relative; padding: 24px 42px 24px 0; cursor: pointer; list-style: none; font-weight: 800; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 0; top: 22px; color: var(--brand); font-size: 1.45rem; }
    details[open] summary::after { content: "−"; }
    details p { padding: 0 0 24px; color: var(--muted); }

    .blog-card { padding: 0; overflow: hidden; }
    .blog-card img { width: 100%; height: 230px; object-fit: cover; }
    .blog-card .content { padding: 26px; }

    .cta-panel { position: relative; overflow: hidden; padding: 68px; border-radius: var(--radius-lg); color: #fff; background: var(--brand); }
    .cta-panel::after { content: ""; position: absolute; width: 360px; height: 360px; right: -160px; top: -180px; border-radius: 50%; background: rgba(228,168,83,.28); }
    .cta-panel > * { position: relative; z-index: 1; }

    .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; }
    .contact-card { color: #fff; background: var(--brand); }
    .contact-card a { color: #fff; }
    .contact-list { display: grid; gap: 18px; margin-top: 28px; }
    .contact-item { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.2); }
    .contact-item small { display: block; color: #bed8dc; }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    label { font-size: .85rem; font-weight: 800; }
    input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; color: var(--ink); background: #fff; }
    input:focus, textarea:focus, select:focus { outline: 3px solid rgba(15,76,92,.12); border-color: var(--brand); }
    textarea { min-height: 150px; resize: vertical; }

    footer { padding: 70px 0 26px; color: #d6e5e7; background: #092f38; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 42px; }
    footer h3, footer h4 { color: #fff; }
    footer a:hover { color: var(--accent); }
    .footer-links { display: grid; gap: 10px; }
    .copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
    .back-top { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; color: #fff; background: var(--brand); box-shadow: var(--shadow); cursor: pointer; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }
    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .split, .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .nav-links { position: fixed; inset: 76px 18px auto; display: none; flex-direction: column; align-items: stretch; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
      .nav-links.open { display: flex; }
      .menu-toggle { display: inline-flex; }
      .nav .btn { display: none; }
      .logo-items { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 700px) {
      .section { padding: 78px 0; }
      .container { width: min(calc(100% - 28px), var(--container)); }
      .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .hero { min-height: auto; background: linear-gradient(rgba(247,250,249,.94), rgba(247,250,249,.94)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80') center / cover; }
      .hero-content { padding: 76px 0; }
      .hero-stats { grid-template-columns: 1fr; }
      .topbar-inner, .copyright { flex-direction: column; align-items: flex-start; }
      .topbar-inner span:last-child { display: none; }
      .logo-items { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-panel { padding: 42px 26px; }
      .media-frame img { min-height: 360px; }
      .floating-note { position: static; max-width: none; border-radius: 0; }
      .pricing-card.featured { transform: none; }
    }








/* Prevent the WordPress admin bar from covering the custom sticky header. */
.admin-bar .mg-homepage .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .mg-homepage .site-header {
        top: 46px;
    }
}

/* Keep the mobile navigation positioned relative to its own header. */
.mg-homepage .nav {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .mg-homepage .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        left: 14px;
        bottom: auto;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Prevent WoodMart's mobile toolbar from covering the homepage button. */
@media screen and (max-width: 1024px) {
    body.home .mg-homepage .back-top {
        bottom: 78px;
    }
}









/* =========================================================
   Fluent Forms — Form ID 3
   Manoj Gohil Contact Form
========================================================= */

#fluentform_3 {
    --ff-brand: #0f4c5c;
    --ff-brand-dark: #0a3742;
    --ff-accent: #e4a853;
    --ff-text: #132a2f;
    --ff-muted: #607278;
    --ff-border: #dce6e5;
    --ff-bg: #ffffff;
    --ff-bg-soft: #f6f9f8;
    --ff-success: #237a57;

    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--ff-text);
    font-family: "Manrope", Arial, sans-serif;
}

/* Remove unwanted default spacing */
#fluentform_3 fieldset {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Two-column form layout */
#fluentform_3 fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 20px;
}

/* Every field group */
#fluentform_3 .ff-el-group,
#fluentform_3 .ff-field_container {
    margin: 0 !important;
    width: 100%;
    min-width: 0;
}

/* Fix Fluent Forms name field wrapper */
#fluentform_3 .ff-t-container {
    display: block;
    margin: 0 !important;
}

#fluentform_3 .ff-t-cell {
    width: 100% !important;
    padding: 0 !important;
}

/* Make project details full width */
#fluentform_3 .ff-el-group:has(#ff_3_description) {
    grid-column: 1 / -1;
}

/* Submit button full width row */
#fluentform_3 .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
}

/* Labels */
#fluentform_3 .ff-el-input--label {
    margin: 0 0 8px !important;
}

#fluentform_3 .ff-el-input--label label {
    display: block;
    margin: 0;
    color: var(--ff-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* Required asterisk */
#fluentform_3 .ff-el-input--label.ff-el-is-required label::after,
#fluentform_3 .ff-el-input--label.asterisk-right label::after {
    margin-left: 4px;
    color: #c0392b;
}

/* Inputs, dropdowns and textarea */
#fluentform_3 .ff-el-form-control {
    width: 100% !important;
    min-height: 54px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--ff-border) !important;
    border-radius: 12px !important;
    outline: none;
    box-shadow: none !important;
    color: var(--ff-text) !important;
    background-color: var(--ff-bg) !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

/* Placeholder */
#fluentform_3 .ff-el-form-control::placeholder {
    color: #8a999d;
    opacity: 1;
}

/* Focus */
#fluentform_3 .ff-el-form-control:focus {
    border-color: var(--ff-brand) !important;
    box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.12) !important;
    background-color: #ffffff !important;
}

/* Dropdown styling */
#fluentform_3 select.ff-el-form-control {
    cursor: pointer;
    appearance: auto;
}

/* Textarea */
#fluentform_3 textarea.ff-el-form-control {
    min-height: 160px;
    padding-top: 15px;
    resize: vertical;
}

/* Submit button */
#fluentform_3 .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    margin: 4px 0 0;
    padding: 14px 28px !important;
    border: 1px solid var(--ff-brand) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: var(--ff-brand) !important;
    box-shadow: none !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#fluentform_3 .ff-btn-submit:hover {
    border-color: var(--ff-brand-dark) !important;
    background: var(--ff-brand-dark) !important;
    box-shadow: 0 10px 26px rgba(15, 76, 92, 0.2) !important;
    transform: translateY(-2px);
}

#fluentform_3 .ff-btn-submit:focus-visible {
    outline: 3px solid var(--ff-accent);
    outline-offset: 3px;
}

#fluentform_3 .ff-btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

/* Validation error fields */
#fluentform_3 .ff-el-is-error .ff-el-form-control,
#fluentform_3 .ff-el-form-control.error {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1) !important;
}

/* Validation messages */
#fluentform_3 .error,
#fluentform_3 .text-danger,
#fluentform_3 .ff-el-is-error .error {
    margin-top: 6px;
    color: #b83227 !important;
    font-size: 13px;
    font-weight: 600;
}

/* Success message */
.fluentform_wrapper_3 .ff-message-success {
    margin: 20px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(35, 122, 87, 0.25);
    border-radius: 14px;
    color: #175b40;
    background: #eef8f3;
    font-weight: 600;
}

/* Error message container */
#fluentform_3_errors {
    margin-top: 18px;
}

#fluentform_3_errors .error,
#fluentform_3_errors .ff-error-message {
    padding: 14px 16px;
    border-radius: 12px;
    color: #8d241c;
    background: #fff1ef;
}

/* Loading state */
#fluentform_3 .ff-btn-submit.ff-working,
#fluentform_3 .ff-btn-submit[data-working="true"] {
    pointer-events: none;
    opacity: 0.75;
}

/* Autofill correction */
#fluentform_3 input:-webkit-autofill,
#fluentform_3 input:-webkit-autofill:hover,
#fluentform_3 input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ff-text);
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* Tablet and mobile */
@media screen and (max-width: 767px) {
    #fluentform_3 fieldset {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    #fluentform_3 .ff-el-group:has(#ff_3_description),
    #fluentform_3 .ff_submit_btn_wrapper {
        grid-column: auto;
    }

    #fluentform_3 .ff-btn-submit {
        width: 100%;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #fluentform_3 .ff-el-form-control,
    #fluentform_3 .ff-btn-submit {
        transition: none;
    }

    #fluentform_3 .ff-btn-submit:hover {
        transform: none;
    }
}


section#expertise h2 {
    color: #fff;
}


.e-con>.e-con-inner {
    max-width: 100%;
}


footer.footer-container.color-scheme-dark {
    padding: 0;
}

.elementor.elementor-5 {
    margin-bottom: 0 !important;
}

.main-page-wrapper {
    padding-top: 0;
}



/* ==========================================================
   WOODMART SINGLE POST - ENTRY META COMPACT
   ========================================================== */

.single-post .entry-meta.wd-entry-meta{
    margin:18px 0 28px !important;
    padding:0 !important;
    border:0 !important;
    text-align:center;
}

.single-post .entry-meta-list{
    display:flex !important;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px !important;
    margin:0 !important;
    padding:0 !important;
    list-style:none;
}

.single-post .entry-meta-list li{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 !important;
    padding:0 !important;
    line-height:1.2 !important;
}

.single-post .entry-meta-list li::before,
.single-post .entry-meta-list li::after{
    display:none !important;
}

.single-post .entry-meta-list .modified-date{
    font-size:14px;
    color:#7b8794;
    font-weight:500;
}

.single-post .entry-meta-list .modified-date time{
    display:block;
    margin:0;
}

.single-post .meta-author{
    display:flex;
    align-items:center;
    gap:8px;
}

.single-post .meta-author span:first-child{
    font-size:14px;
    font-weight:600;
    color:#7b8794;
    margin:0 !important;
}

.single-post .meta-author img{
    width:28px !important;
    height:28px !important;
    border-radius:50%;
    margin:0 !important;
    display:block;
}

.single-post .meta-author a{
    margin:0 !important;
    color:#0f4c5c;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.single-post .meta-author a:hover{
    color:#2d7d74;
}

.single-post .meta-author .fn{
    display:inline;
    margin:0 !important;
    padding:0 !important;
}

/* Remove huge bottom spacing */

.single-post .entry-header{
    margin-bottom:20px !important;
    padding-bottom:0 !important;
}

.single-post .entry-header .entry-meta{
    margin-bottom:20px !important;
}

/* Remove unnecessary HR spacing */

.single-post .entry-meta + *{
    margin-top:20px !important;
}

/* Mobile */

@media(max-width:768px){

.single-post .entry-meta.wd-entry-meta{
    margin:15px 0 22px !important;
}

.single-post .entry-meta-list{
    gap:8px !important;
    flex-direction:column;
}

.single-post .meta-author{
    justify-content:center;
}

}


.single-post figure img {
    margin: 0 !important;
}