:root {
  --alr-orange: #f39313;
  --alr-text: #1f2933;
  --alr-muted: #667085;
  --alr-soft: #f7f7f4;
  --alr-border: rgba(31, 41, 51, 0.10);
  --alr-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  --alr-shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
}

body.alrowad-single-news-active {
  background: #fbfaf7;
}

body.alrowad-single-news-active .page-top,
body.alrowad-single-news-active .porto-block-html-top,
body.alrowad-single-news-active .breadcrumbs-wrap {
  display: none !important;
}

.alr-news-single-wrap,
.alr-news-single-wrap * {
  box-sizing: border-box;
}

.alr-news-single-wrap {
  --alr-path-color: var(--alr-orange);
  width: 100%;
  overflow: clip;
  color: var(--alr-text);
  font-family: "Cairo", "Tajawal", Arial, sans-serif;
  background:
    radial-gradient(circle at 7% 16%, rgba(243, 147, 19, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 44%, #fff 100%);
}

.alr-news-shell {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
}

.alr-news-layout-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(14px, 2.2vw, 34px);
}

.alr-news-hero {
  position: relative;
  min-height: clamp(310px, 35vw, 455px);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, color-mix(in srgb, var(--alr-path-color) 30%, transparent), transparent 34%),
    linear-gradient(135deg, #141923 0%, #292013 54%, #3a2a14 100%);
}

.alr-news-hero::before,
.alr-news-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.16);
  pointer-events: none;
}

.alr-news-hero::before {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -74px;
  top: 42px;
}

.alr-news-hero::after {
  width: 126px;
  height: 126px;
  border-radius: 36px;
  left: 7%;
  bottom: 42px;
  transform: rotate(18deg);
  background: rgba(255,255,255,0.04);
}

.alr-news-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.alr-news-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.66) 0%, rgba(11, 18, 32, 0.34) 42%, rgba(11, 18, 32, 0.83) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.68) 100%);
}

.alr-news-hero.no-image .alr-news-hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--alr-path-color) 34%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(15,23,42,0.96), rgba(31,41,55,0.94));
}

.alr-news-hero-shell {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 54px) 0 clamp(30px, 4vw, 42px);
}

.alr-news-hero-content {
  max-width: 880px;
}

.alr-news-path-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--alr-path-color) 86%, #fff 14%);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--alr-path-color) 32%, transparent);
}

.alr-news-path-badge i {
  font-size: 0.98em;
}

.alr-news-hero h1 {
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(25px, 3.25vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-shadow: 0 14px 30px rgba(0,0,0,0.30);
  max-width: 880px;
}

.alr-news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alr-news-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  color: rgba(255,255,255,0.94);
  background: rgba(255,255,255,0.105);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.alr-news-hero-meta i {
  color: color-mix(in srgb, var(--alr-path-color) 72%, #fff 28%);
}

.alr-news-layout {
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(315px, 360px) minmax(0, 1fr);
  grid-template-areas: "sidebar content";
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
  padding-block: clamp(24px, 3vw, 36px) 76px;
}

.alr-news-layout > * {
  direction: rtl;
}

.alr-news-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.alr-news-main-card {
  grid-area: content;
}

.alr-news-side-card,
.alr-news-main-card,
.alr-news-related-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--alr-border);
  box-shadow: var(--alr-shadow-soft);
  border-radius: 26px;
}

.alr-news-side-card {
  overflow: hidden;
  padding: 16px;
}

.alr-news-side-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -16px -16px 14px;
  background: linear-gradient(90deg, rgba(243,147,19,0.18), var(--alr-path-color));
}

.alr-news-side-head,
.alr-news-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alr-news-side-head span,
.alr-news-section-title > span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--alr-path-color);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--alr-path-color) 28%, transparent);
  flex: 0 0 auto;
}

.alr-news-side-head h2,
.alr-news-section-title h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: #1f2933;
}

.alr-news-side-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 14px;
}

.alr-news-side-item {
  --alr-item-color: var(--alr-path-color);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(31,41,51,0.08);
  border-radius: 18px;
  background: #fff;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.alr-news-side-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--alr-item-color) 38%, rgba(31,41,51,0.08));
  box-shadow: 0 16px 34px rgba(15,23,42,0.10);
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--alr-item-color) 4%, #fff 96%));
}

.alr-news-side-thumb {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 16px;
  background: color-mix(in srgb, var(--alr-item-color) 11%, #f7f7f4 89%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alr-item-color);
}

.alr-news-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.alr-news-side-item:hover .alr-news-side-thumb img {
  transform: scale(1.07);
}

.alr-news-side-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.alr-news-side-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--alr-item-color);
  background: color-mix(in srgb, var(--alr-item-color) 10%, #fff 90%);
  font-size: 10.5px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alr-news-side-content strong {
  color: #1f2933;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.alr-news-side-content small {
  color: var(--alr-muted);
  font-size: 11.5px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.alr-news-side-dot {
  opacity: .65;
}

.alr-news-empty {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  color: var(--alr-muted);
  line-height: 1.8;
}

.alr-news-main-card {
  min-width: 0;
  padding: clamp(20px, 2.6vw, 36px);
  box-shadow: var(--alr-shadow);
}

.alr-news-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.alr-news-info-item {
  position: relative;
  min-height: 102px;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(31,41,51,0.08);
  background:
    radial-gradient(circle at left top, color-mix(in srgb, var(--alr-path-color) 10%, transparent), transparent 52%),
    #fff;
  overflow: hidden;
}

.alr-news-info-item span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--alr-path-color);
  background: color-mix(in srgb, var(--alr-path-color) 12%, #fff 88%);
  margin-bottom: 10px;
}

.alr-news-info-item strong,
.alr-news-info-item em {
  display: block;
  font-style: normal;
}

.alr-news-info-item strong {
  color: var(--alr-muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 4px;
}

.alr-news-info-item em {
  color: #1f2933;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.55;
}


.alr-news-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 26px;
  padding: 13px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--alr-path-color) 7%, #fff 93%), #f8fafc 72%);
  border: 1px solid color-mix(in srgb, var(--alr-path-color) 16%, rgba(31,41,51,0.07) 84%);
}

.alr-news-share-label {
  color: #1f2933;
  font-weight: 900;
  margin-inline-end: 4px;
  white-space: nowrap;
}

.alr-news-share-btn,
.alr-news-share-bar a,
.alr-news-share-bar button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,0.24), transparent 36%),
    var(--alr-path-color);
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
  box-shadow: 0 12px 22px color-mix(in srgb, var(--alr-path-color) 24%, transparent);
  flex: 0 0 auto;
}

.alr-news-share-btn svg,
.alr-news-share-bar a svg,
.alr-news-share-bar button svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.alr-news-share-btn:hover,
.alr-news-share-bar a:hover,
.alr-news-share-bar button:hover {
  transform: translateY(-2px);
  opacity: .94;
  box-shadow: 0 15px 26px color-mix(in srgb, var(--alr-path-color) 30%, transparent);
}

.alr-news-share-btn:focus-visible,
.alr-news-share-bar a:focus-visible,
.alr-news-share-bar button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--alr-path-color) 30%, #fff 70%);
  outline-offset: 3px;
}

.alr-news-share-instagram,
.alr-news-share-linkedin,
.alr-news-share-email,
.alr-news-share-whatsapp,
.alr-news-share-facebook {
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,0.25), transparent 38%),
    color-mix(in srgb, var(--alr-path-color) 92%, #111827 8%) !important;
}

.alr-news-copy-status {
  color: var(--alr-path-color);
  font-weight: 900;
  margin-inline-start: 6px;
  min-height: 20px;
  line-height: 1.5;
}

.alr-news-entry-content {
  color: #27313f;
  font-size: 18px;
  line-height: 2.05;
}

.alr-news-entry-content > *:first-child {
  margin-top: 0;
}

.alr-news-entry-content p {
  margin: 0 0 1.15em;
}

.alr-news-entry-content h1,
.alr-news-entry-content h2,
.alr-news-entry-content h3,
.alr-news-entry-content h4,
.alr-news-entry-content h5,
.alr-news-entry-content h6 {
  color: #1f2933;
  line-height: 1.45;
  font-weight: 900;
  margin: 1.45em 0 .65em;
}

.alr-news-entry-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  position: relative;
  padding-inline-start: 18px;
}

.alr-news-entry-content h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .28em;
  width: 5px;
  height: 1.25em;
  border-radius: 99px;
  background: var(--alr-path-color);
}

.alr-news-entry-content a {
  color: var(--alr-path-color);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--alr-path-color) 35%, transparent);
}

.alr-news-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

.alr-news-entry-content img.alr-news-lightbox-image {
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.alr-news-entry-content img.alr-news-lightbox-image:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 24px 52px rgba(15,23,42,0.18);
}

.alr-news-entry-content figure {
  margin: 1.5em 0;
}

.alr-news-entry-content figcaption {
  color: var(--alr-muted);
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

.alr-news-entry-content blockquote {
  margin: 1.5em 0;
  padding: 20px 22px;
  border-inline-start: 5px solid var(--alr-path-color);
  border-radius: 20px;
  color: #1f2933;
  background: color-mix(in srgb, var(--alr-path-color) 7%, #fff 93%);
  font-weight: 700;
}

.alr-news-entry-content ul,
.alr-news-entry-content ol {
  padding-inline-start: 1.35em;
  margin-bottom: 1.2em;
}

.alr-news-entry-content iframe,
.alr-news-entry-content video {
  max-width: 100%;
  border-radius: 22px;
}

.alr-news-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  overflow: hidden;
  border-radius: 18px;
}

.alr-news-entry-content th,
.alr-news-entry-content td {
  border: 1px solid rgba(31,41,51,0.10);
  padding: 12px;
  text-align: right;
}

.alr-news-entry-content th {
  background: color-mix(in srgb, var(--alr-path-color) 10%, #f8fafc 90%);
  font-weight: 900;
}

.alr-news-page-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.alr-news-tags {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(31,41,51,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.alr-news-tags strong {
  color: #1f2933;
  font-weight: 900;
}

.alr-news-tags a {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--alr-path-color) 9%, #fff 91%);
  color: var(--alr-path-color) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.alr-news-related {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(31,41,51,0.10);
}

.alr-news-section-title {
  margin-bottom: 18px;
}

.alr-news-section-title p {
  margin: 4px 0 0;
  color: var(--alr-muted);
  line-height: 1.6;
}

.alr-news-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.alr-news-related-card {
  --alr-card-color: var(--alr-path-color);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.alr-news-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15,23,42,0.13);
}

.alr-news-related-media {
  position: relative;
  display: block;
  height: 150px;
  overflow: hidden;
  background: color-mix(in srgb, var(--alr-card-color) 12%, #f8fafc 88%);
  color: var(--alr-card-color);
  text-decoration: none !important;
}

.alr-news-related-media.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.alr-news-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.alr-news-related-card:hover .alr-news-related-media img {
  transform: scale(1.06);
}

.alr-news-related-badge {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 20px);
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--alr-card-color);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alr-news-related-body {
  padding: 15px;
}

.alr-news-related-body h3 {
  margin: 0 0 9px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 900;
}

.alr-news-related-body h3 a {
  color: #1f2933 !important;
  text-decoration: none !important;
}

.alr-news-related-body p {
  margin: 0 0 12px;
  color: var(--alr-muted);
  font-size: 13px;
  line-height: 1.75;
}

.alr-news-related-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--alr-card-color);
  font-size: 12px;
  font-weight: 800;
}

.alr-news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(8, 13, 23, 0.88);
  backdrop-filter: blur(8px);
}

.alr-news-lightbox.is-open {
  display: flex;
}

.alr-news-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #fff;
}

.alr-news-lightbox-close,
.alr-news-lightbox-prev,
.alr-news-lightbox-next {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,0.13);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.alr-news-lightbox-close:hover,
.alr-news-lightbox-prev:hover,
.alr-news-lightbox-next:hover {
  background: var(--alr-path-color);
  transform: translateY(-2px);
}

.alr-news-lightbox-close {
  top: 18px;
  inset-inline-end: 18px;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  font-size: 22px;
}

.alr-news-lightbox-prev,
.alr-news-lightbox-next {
  top: 50%;
  width: 46px;
  height: 54px;
  border-radius: 16px;
  transform: translateY(-50%);
  font-size: 22px;
}

.alr-news-lightbox-prev:hover,
.alr-news-lightbox-next:hover {
  transform: translateY(calc(-50% - 2px));
}

.alr-news-lightbox-prev {
  left: 20px;
}

.alr-news-lightbox-next {
  right: 20px;
}

.alr-news-lightbox-caption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(900px, 84vw);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1280px) {
  .alr-news-layout {
    grid-template-columns: minmax(292px, 320px) minmax(0, 1fr);
    gap: 18px;
  }

  .alr-news-info-strip,
  .alr-news-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .alr-news-shell {
    width: min(100% - 24px, 720px);
  }

  .alr-news-layout-shell {
    padding-inline: 12px;
  }

  .alr-news-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "sidebar";
  }

  .alr-news-sidebar {
    position: static;
  }

  .alr-news-hero {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .alr-news-shell {
    width: min(100% - 18px, 100%);
  }

  .alr-news-hero h1 {
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .alr-news-hero-meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .alr-news-main-card,
  .alr-news-side-card {
    border-radius: 22px;
  }

  .alr-news-info-strip,
  .alr-news-related-grid {
    grid-template-columns: 1fr;
  }

  .alr-news-entry-content {
    font-size: 16.5px;
    line-height: 1.95;
  }

  .alr-news-side-item {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .alr-news-side-thumb {
    width: 68px;
    height: 68px;
  }

  .alr-news-lightbox-prev,
  .alr-news-lightbox-next {
    width: 40px;
    height: 48px;
  }

  .alr-news-lightbox-prev {
    left: 8px;
  }

  .alr-news-lightbox-next {
    right: 8px;
  }
}


@media (max-width: 768px) {
  .alrowad-single-news-active #main,
  .alrowad-single-news-active .main-content,
  .alrowad-single-news-active .page-content,
  .alrowad-single-news-active .content-area {
    padding-top: 0 !important;
  }

  .alr-news-layout {
    padding-block: 16px 42px;
  }

  .alr-news-sidebar {
    display: none !important;
  }

  .alr-news-main-card {
    padding: 18px 14px 20px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  }

  .alr-news-info-strip {
    display: none;
  }

  .alr-news-share-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .alr-news-share-label {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    font-size: 13px;
  }

  .alr-news-share-btn,
  .alr-news-share-bar a,
  .alr-news-share-bar button {
    width: 100%;
    height: 40px;
    border-radius: 13px;
    box-shadow: none;
  }

  .alr-news-share-btn svg,
  .alr-news-share-bar a svg,
  .alr-news-share-bar button svg {
    width: 19px;
    height: 19px;
  }

  .alr-news-print-btn {
    display: none !important;
  }

  .alr-news-copy-status {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 12px;
    min-height: 16px;
  }

  .alr-news-tags {
    display: none;
  }
}

@media (max-width: 680px) {
  .alr-news-single-wrap {
    background: #f7f8fb;
  }

  .alr-news-hero {
    min-height: 286px;
    border-radius: 0 0 24px 24px;
  }

  .alr-news-hero-shell {
    align-items: flex-end;
    padding-block: 54px 22px;
  }

  .alr-news-hero-content {
    padding: 0;
  }

  .alr-news-path-badge {
    padding: 7px 11px;
    font-size: 12px;
  }

  .alr-news-hero h1 {
    font-size: clamp(22px, 6.6vw, 30px);
    line-height: 1.55;
    margin: 10px 0 10px;
  }

  .alr-news-hero-meta {
    gap: 6px;
  }

  .alr-news-hero-meta span {
    width: auto;
    max-width: 100%;
    padding: 7px 9px;
    font-size: 11.5px;
  }

  .alr-news-hero-meta span:nth-last-child(1) {
    display: none;
  }

  .alr-news-layout-shell {
    padding-inline: 8px;
  }

  .alr-news-entry-content {
    font-size: 16px;
    line-height: 1.9;
  }

  .alr-news-entry-content p {
    margin-bottom: 1em;
  }

  .alr-news-entry-content h2 {
    font-size: 22px;
  }

  .alr-news-entry-content img,
  .alr-news-entry-content iframe,
  .alr-news-entry-content video {
    border-radius: 16px;
  }

  .alr-news-related {
    margin-top: 28px;
    padding-top: 22px;
  }

  .alr-news-section-title {
    gap: 10px;
  }

  .alr-news-section-title h2 {
    font-size: 20px;
  }

  .alr-news-section-title p {
    display: none;
  }

  .alr-news-related-grid {
    gap: 12px;
  }

  .alr-news-related-media {
    height: 170px;
  }

  .alr-news-related-body {
    padding: 13px;
  }

  .alr-news-related-body p {
    display: none;
  }

  .alr-news-lightbox {
    padding: 10px;
  }

  .alr-news-lightbox img {
    max-width: 96vw;
    max-height: 78vh;
    border-radius: 16px;
  }

  .alr-news-lightbox-caption {
    bottom: 12px;
    font-size: 12px;
    max-width: 92vw;
  }
}

@media print {
  .alr-news-sidebar,
  .alr-news-share-bar,
  .alr-news-related,
  .alr-news-hero::before,
  .alr-news-hero::after,
  .alr-news-lightbox {
    display: none !important;
  }

  .alr-news-layout,
  .alr-news-info-strip {
    display: block;
  }

  .alr-news-hero {
    min-height: auto;
    background: #fff !important;
  }

  .alr-news-hero-img,
  .alr-news-hero-overlay {
    display: none !important;
  }

  .alr-news-hero h1,
  .alr-news-hero-meta span {
    color: #111827 !important;
  }

  .alr-news-main-card {
    box-shadow: none !important;
    border: 0 !important;
  }
}
