/* Article page sidebar — CTA + recent updates + links */

.article-sidebar {
  display: grid;
  gap: 1.25rem;
}

.article-sidebar .widget {
  margin-bottom: 0;
  background: #fff;
  border: 1px solid rgba(15, 40, 70, 0.08);
  border-radius: 1rem;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 10px 28px rgba(15, 40, 70, 0.05);
}

.article-sidebar .widget-title {
  margin: 0 0 0.95rem;
  padding: 0 0 0.7rem;
  border-bottom: 1px solid #e8eef5;
  color: #0f1724;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-sidebar .widget.article-sidebar__cta {
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(0, 194, 215, 0.22), transparent 55%),
    linear-gradient(145deg, #003b7a 0%, #0054a5 55%, #0a6bc2 100%) !important;
  border: 0;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 59, 122, 0.22);
}

.article-sidebar__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
}

.article-sidebar__cta-title {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff !important;
}

.article-sidebar__cta-copy {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-sidebar__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #e30613;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(227, 6, 19, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}

.article-sidebar__cta-btn:hover,
.article-sidebar__cta-btn:focus {
  background: #c40510;
  color: #fff !important;
  transform: translateY(-1px);
}

.article-sidebar__item {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.15rem !important;
  margin: 0;
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  background: transparent !important;
  color: inherit !important;
  text-decoration: none !important;
}

.article-sidebar__item:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0.15rem !important;
}

.article-sidebar__item:first-child {
  padding-top: 0.15rem !important;
}

.article-sidebar__item:hover,
.article-sidebar__item:focus {
  background: #f6f9fc !important;
}

.article-sidebar__thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 0.55rem;
  display: block;
  float: none !important;
  margin: 0 !important;
  background: #edf2f7;
}

.article-sidebar__item-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.article-sidebar__item-title {
  display: block;
  color: #0f1724;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.article-sidebar__item:hover .article-sidebar__item-title {
  color: #0054a5;
}

.article-sidebar__item-date {
  display: block;
  color: #667588;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-sidebar__links .link-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-sidebar__links .link-widget li {
  margin: 0;
  border-bottom: 1px solid #eef2f7;
}

.article-sidebar__links .link-widget li:last-child {
  border-bottom: 0;
}

.article-sidebar__links .link-widget a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.1rem;
  color: #243044 !important;
  font-weight: 650;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.article-sidebar__links .link-widget a::after {
  content: "↗";
  color: #94a3b8;
  font-size: 0.8rem;
}

.article-sidebar__links .link-widget a:hover,
.article-sidebar__links .link-widget a:focus {
  color: #0054a5 !important;
}

.article-sidebar__links .link-widget a:hover::after,
.article-sidebar__links .link-widget a:focus::after {
  color: #0054a5;
}

@media (max-width: 991.98px) {
  .article-sidebar {
    margin-top: 1.5rem;
  }
}
