.news_box p{
    color: #000000;
}
.news_box img{
    max-width: 100%;
    height: auto;
}
.nav_font_size {
  font-size: var(--nav_font_size) !important; /* use variable */
}


.trend_div{
    background-color: rgba(0, 0, 0, 0.5); /* White with 50% transparency */
    padding: 10px;

}
.trend_div h2{
   
        display: inline-block; /* Adjusts width to content */
        padding: 5px;
        font-size: 22px!important;
  
}

.marquee {
    height: 40px;
    overflow: hidden;
    position: relative;
}

.marquee p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 20s linear infinite;
}
.marquee p  a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;

}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  /* From Uiverse.io by BaekCCI */ 
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #fff;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--footer_text)!important;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--footer_text)!important;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: var(--footer_bg)!important;
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:active {
    transform: scale(0.95);
  }
  
  /* root css */

  .topbar_bg{
    background-color: var(--topbar_bg);
  }
  .under_news{
    margin-top: 2px;

  }
 
.sidebar_ads img,
.footer_ads img,
.under_news img{
  width: 100%;
  height: auto;
}

.topbar_link{
  padding:10px!important;
}

.topbar_menu .dropdown-menu{
  background-color: var(--navbar_bg)!important;
}
.search-box input{
  border-radius: 22px;
  margin-top: 5%;
  padding-left:10%!important;
}
.trending-area .trending-main { border: none; }

.disclaimer{
  padding: 20px;
  border: 1px solid #f78d8d;
  /* background-color: #f7e7e7d9; */
  border-radius: 10px;
  font-weight:bold;
  font-size: 14px;
}

/* ========== CKEditor content basics ========== */
.ck-content { line-height: 1.6; }

/* ========== Author blocks ========== */
.author-photo-block {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.author-photo-block__avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  border: 2px solid #fff;
}

.author-photo--small .author-photo-block__avatar { width: 48px; height: 48px; }
.author-photo--medium .author-photo-block__avatar { width: 72px; height: 72px; }
.author-photo--large .author-photo-block__avatar { width: 96px; height: 96px; }

.author-photo-block__body {
  flex: 1;
  min-width: 220px;
}

.author-photo-block__label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
}

.author-photo-block__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
}

.author-photo-block__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.95rem;
  color: #374151;
}

.author-photo-block__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.author-photo-block__contact i {
  color: #f97316;
}

@media (max-width: 576px) {
  .author-photo-block {
    text-align: center;
    justify-content: center;
  }

  .author-photo-block__body {
    min-width: auto;
  }

  .author-photo-block__meta {
    justify-content: center;
  }
}

/* ========== Posted by (reporter) chip ========== */
.news-posted-by {
  margin-top: 22px;
}

.news-posted-by__divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #f97316 0%, rgba(249, 115, 22, 0) 80%);
  margin-bottom: 14px;
}

.news-posted-by__header {
  margin-bottom: 8px;
}

.news-posted-by__label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.reporter-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(249, 115, 22, 0.07);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reporter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 20px rgba(249, 115, 22, 0.15);
}

.reporter-chip__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.25);
  border: 2px solid #fff;
  flex-shrink: 0;
}

.reporter-chip__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reporter-chip__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.reporter-chip__name {
  font-weight: 600;
  color: #0f172a;
}

.reporter-chip__role {
  font-size: 0.85rem;
  color: #6b7280;
}
.ck-content figure.image {
  display: table;
  margin: 1rem auto;
  max-width: 100%;
  width: fit-content;
}
.ck-content figure.image img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* honor CKEditor resize on figure/img */
.ck-content figure.image.image_resized { display: block; }

/* ===== Home YouTube feature ===== */
.youtube-feature {
  margin: 60px 0;
  position: relative;
  padding: 20px 0 10px;
  color: var(--body_text);
}
.yt-feature-card {
  background: var(--logo_bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 17, 37, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.yt-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}
.yt-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px 18px 0 0;
}
.yt-meta {
  padding: 20px 22px 26px;
}

.yt-channel {
  display: none;
}

.yt-meta h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 12px;
  color: var(--body_text);
}
.yt-meta p {
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 18px;
}
.yt-thumb-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yt-thumb-card {
  display: flex;
  width: 100%;
  border: none;
  text-align: left;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 18px;
  padding: 10px;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
  color: inherit;
}
.yt-thumb-card:hover {
  transform: translateX(6px);
  background: rgba(15, 23, 42, 0.08);
}
.yt-thumb-card.is-active {
  border-color: rgba(239, 68, 68, 0.8);
  background: rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 28px rgba(5, 12, 35, 0.15);
}
.yt-thumb-img {
  width: 110px;
  min-width: 110px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.yt-thumb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.25));
}
.yt-thumb-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.yt-thumb-body strong {
  font-size: 0.95rem;
  color: var(--body_text);
  line-height: 1.2;
}
.yt-thumb-body small {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.78rem;
}

@media (max-width: 991px) {
  .youtube-feature {
    border-radius: 20px;
    padding: 36px 0 24px;
  }
  .yt-thumb-img {
    width: 90px;
    min-width: 90px;
  }
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 40px;
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--footer_bg) 95%, #000 5%) 0%,
      color-mix(in srgb, var(--footer_bg) 80%, #000 20%) 60%,
      color-mix(in srgb, var(--footer_bg) 65%, #000 35%) 100%
    );
  color: var(--footer_text);
  border-radius: 0;
  box-shadow: 0 -18px 40px rgba(4, 9, 18, 0.4);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 45%);
  pointer-events: none;
}
.site-footer a {
  color: color-mix(in srgb, var(--footer_text) 90%, #fff 10%);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-footer a:hover {
  color: color-mix(in srgb, var(--footer_text) 70%, #7dd4ff 30%);
  opacity: 0.9;
}
.footer-top {
  padding: 60px 0 40px;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--footer_text) 18%, transparent 82%);
}
.footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: color-mix(in srgb, var(--footer_text) 90%, #f0f4ff 10%);
}
.footer-brand__logo img {
  max-width: 180px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  margin-bottom: 18px;
}
.footer-text {
  color: color-mix(in srgb, var(--footer_text) 85%, #fff 15%);
  line-height: 1.5;
  margin-bottom: 18px;
}
.footer-links-row {
  justify-content: flex-end;
}
.footer-links-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-section-label {
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--footer_text) 95%, #ffffff 5%);
  font-weight: 600;
}
.footer-hit-counter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--footer_text) 70%, #9ec7ff 30%);
}
.footer-social-row {
  display: flex;
  gap: 12px;
}
.footer-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--footer_bg) 40%, #101522 60%);
  color: color-mix(in srgb, var(--footer_text) 88%, #ffffff 12%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-social-row a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--footer_text) 40%, #7dd4ff 60%);
  background: color-mix(in srgb, var(--footer_bg) 28%, #101522 72%);
  color: #ffffff;
}
.footer-social-icon {
  display: inline-flex;
  line-height: 0;
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-links-block ul a {
  color: color-mix(in srgb, var(--footer_text) 85%, #fcfcff 15%);
}
.footer-links-block ul a:hover {
  color: color-mix(in srgb, var(--footer_text) 60%, #7dd4ff 40%);
}
.footer-contact p {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--footer_text) 80%, #fff 20%);
}
.footer-cta {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--footer_bg) 55%, #1d2b46 45%);
  border: 1px solid color-mix(in srgb, var(--footer_bg) 45%, #ffffff 55%);
}
.footer-cta p {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--footer_text) 80%, #c1d8ff 20%);
}
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--footer_text) 20%, transparent 80%);
  background: color-mix(in srgb, var(--footer_bg) 90%, #000 10%);
  padding: 18px 0;
}
.footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--footer_text) 85%, #f5f5f5 15%);
}
.footer-bottom__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
}

/* Scroll-to-top icon fallback (independent of icon fonts) */
#scrollUp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  color: #fff !important;
}
#scrollUp i {
  display: none !important;
}
#scrollUp::before {
  content: "\2191";
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .footer-links-row .col-6 {
    flex: 0 0 50%;
  }
  .footer-bottom__row {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom__links {
    justify-content: center;
  }
}

/* === Moved from base.html.twig === */
.bn45 {
    width: 170px;
    height: 50px;
}

.google_popup { /* Reserved: styles managed via JS */ }

.push-optin-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 320px;
    background: #0f172a;
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.push-optin-banner h5 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.push-optin-banner p {
    margin: 0 0 10px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.4;
}

.push-optin-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.push-optin-actions button {
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.push-optin-actions .push-allow-btn {
    background: linear-gradient(120deg, #f97316, #ea580c);
    color: #fff;
    font-weight: 700;
}

.push-optin-actions .push-later-btn {
    background: #1e293b;
    color: #cbd5e1;
}

body.web-push-enabled .push-optin-banner {
    top: 15px;
    right: 15px;
    bottom: auto;
    width: min(310px, 85vw);
    height: 144px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(3, 147, 255, 0.95), rgba(8, 96, 255, 0.95));
    color: #fff;
    z-index: 1200;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Poppins', 'Roboto', sans-serif;
    animation: pushPromptSlide 0.4s ease;
}

body.web-push-enabled .push-optin-banner h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

body.web-push-enabled .push-optin-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

body.web-push-enabled .push-optin-actions button {
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.web-push-enabled .push-later-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.web-push-enabled .push-allow-btn {
    background: #fff;
    color: #0b51c5;
    box-shadow: 0 10px 16px rgba(15, 56, 159, 0.35);
}

body.web-push-enabled .push-optin-actions button:hover {
    transform: translateY(-1px);
}

@keyframes pushPromptSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    body.web-push-enabled .push-optin-banner {
        right: 50%;
        left: auto;
        transform: translateX(50%);
        width: 90vw;
    }
}
.ck-content figure.image.image_resized img { width: 100%; }
/* if width set inline on IMG, don’t distort height */
.ck-content img[style*="width"] { height: auto !important; }
/* alignment helpers from CKEditor */
.ck-content .image-style-align-left  { float: left;  margin: 0 1rem 1rem 0; }
.ck-content .image-style-align-right { float: right; margin: 0 0 1rem 1rem; }
.ck-content .image-style-align-center{ margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .ck-content figure.image,
  .ck-content figure.image.image_resized,
  .ck-content .image-style-align-left,
  .ck-content .image-style-align-right {
    display: block;
    float: none;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1rem 0;
  }

  .ck-content figure.image img,
  .ck-content figure.image.image_resized img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
  }
}

/* don’t force all images to 100% width globally */
.article-body img,
.post-body img { max-width: 100%; height: auto; }

/* ========== Editorial styles ========== */
.ck-content .lead {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.75;
  color: #222;
  font-weight: 400;
  margin: 0 0 1rem;
}
.ck-content .byline {
  font-size: .95rem;
  color: #6c757d;
  margin: .25rem 0 1.25rem;
  letter-spacing: .02em;
}
.ck-content blockquote.pull-quote {
  position: relative;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  font-weight: 500;
  color: #111;
  margin: 1.25rem auto;
  padding: 1rem 1.25rem;
  border-left: 4px solid #0d6efd;
  background: #f8f9fa;
  max-width: 48rem;
}
.ck-content blockquote.pull-quote p { margin: 0; }
.ck-content blockquote.pull-quote cite {
  display: block; margin-top: .5rem; font-size: .95rem; color: #6c757d; font-style: normal;
}
.ck-content .small-caps { font-variant-caps: small-caps; letter-spacing: .03em; }

/* general typographic tweaks */
.ck-content strong, .ck-content b { font-weight: 600; }
.ck-content em { font-style: italic; }
.ck-content u { text-decoration: underline; }
.ck-content a { color: #0d6efd; text-decoration: underline; }
.ck-content a:hover { color: #0a58ca; text-decoration: underline; }
.ck-content a:focus { outline: 2px solid #0a58ca; outline-offset: 2px; }
.ck-content blockquote {
  border-left: 4px solid #dee2e6; margin: 0; padding-left: 1rem; color: #495057;
}

/* Trending Area CSS Start */
.trending-bar {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}
.trending-label {
  background: #c62828;
  color: #fff;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.trending-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}
.trending-marquee {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 40px;
}
.trending-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: trending-marquee 28s linear infinite;
}
.trending-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}
.trending-item img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
}
@keyframes trending-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .trending-label { padding: 8px 10px; font-size: 13px; }
  .trending-item { font-size: 13px; }
}

/* ========== Dark & Print ========== */
@media (prefers-color-scheme: dark) {
  .ck-content .lead { color: #e9ecef; }
  .ck-content .byline { color: #adb5bd; }
  .ck-content blockquote.pull-quote {
    color: #f8f9fa; background: #1f2327; border-left-color: #4dabf7;
  }
  .ck-content blockquote.pull-quote cite { color: #adb5bd; }
  .fact-box { background: #1f2327; border-left-color: #4dabf7; }
  .fact-box__title { color: #e7f1ff; }
  .fact-box__body { color: #e9ecef; }
}

@media print {
  .fact-box { page-break-inside: avoid; background: #fff; border-left-color: #000; }
}

/* =====================================================
   Author Block – Common
   ===================================================== */

.author-block {
  margin-top: 16px;
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}

.author-block img {
  display: inline-block;
  object-fit: cover;
}

/* =====================================================
   Default Style
   ===================================================== */

.author-default {
  font-weight: 600;
}

.author-default img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 6px;
}

.author-default span {
  margin-left: 6px;
}

.author-default .author-meta {
  display: block;
  padding-left: 80px;
  font-weight: normal;
  color: #555;
}

/* =====================================================
   Compact Style
   ===================================================== */

.author-compact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-compact img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* =====================================================
   Card Style
   ===================================================== */

.author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
}

.author-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-card .author-name {
  font-size: 15px;
  font-weight: 600;
}

.author-card .author-meta {
  font-size: 13px;
  color: #666;
}

/* =====================================================
   Inline Style
   ===================================================== */

.author-inline {
  color: #555;
  font-size: 13px;
}

.author-inline b {
  font-weight: 600;
}

/* =====================================================
   Signature Style
   ===================================================== */

.author-signature {
  margin-top: 20px;
  font-style: italic;
  font-size: 14px;
  color: #333;
}

/* =====================================================
   Boxed Style
   ===================================================== */

.author-boxed {
  padding: 12px;
  border: 2px dashed #ccc;
  background: #fcfcfc;
}

.author-boxed strong {
  display: block;
  margin-bottom: 4px;
}

.author-boxed div {
  font-size: 13px;
  color: #555;
}
