/* RE:BELLE™ Media · Maschinenraum Editorial Sidebar Ads
   Self-contained styling — works on dark and light article themes. */

.rm-sidebar-ads {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(127, 127, 127, 0.22);
}

.rm-sidebar-ads.is-inline {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.rm-sidebar-ads .rm-ad {
  display: block;
  text-decoration: none;
  background: #f5f1ea;
  color: #1a1a1a;
  padding: 18px 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.rm-sidebar-ads .rm-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.rm-sidebar-ads .rm-ad-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 12px;
  font-weight: 500;
}

.rm-sidebar-ads .rm-ad-image {
  display: block;
  overflow: hidden;
  background: #e9e3d8;
}

.rm-sidebar-ads .rm-ad img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.92);
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.rm-sidebar-ads .rm-ad:hover img {
  opacity: 0.94;
  transform: scale(1.015);
}

.rm-sidebar-ads .rm-ad-body {
  padding-top: 14px;
}

.rm-sidebar-ads .rm-ad-body p {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.78);
  font-style: italic;
  font-weight: 400;
}

.rm-sidebar-ads .rm-ad-cta {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-weight: 500;
  transition: opacity 0.25s ease, letter-spacing 0.25s ease;
}

.rm-sidebar-ads .rm-ad:hover .rm-ad-cta {
  opacity: 0.72;
  letter-spacing: 0.3em;
}

@media (max-width: 900px) {
  .rm-sidebar-ads {
    gap: 28px;
    margin-top: 28px;
  }
}
