/* APOW Aegis Living — v1 */
:root {
  --color-primary: #1b5ca1;
  --color-primary-dark: #144a82;
  --color-primary-soft: #e8f0f8;
  --color-primary-muted: #5a7fa8;
  --color-text: #1a2332;
  --color-text-muted: #5c6573;
  --color-bg: #fafbfc;
  --color-white: #fff;
  --color-border: #d4dee8;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(27, 92, 161, 0.08);
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--color-primary);
}

.logo span {
  font-weight: 500;
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font: inherit;
  color: var(--color-text);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Nav wraps list + Contact (Contact inside dropdown on narrow screens) */
.site-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-left: auto;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.site-nav__list a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--color-primary);
}

.site-nav__contact {
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 0.75rem;
    gap: 0.5rem;
    width: 100%;
  }

  .site-nav__contact {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 881px) {
  .site-nav {
    max-height: none !important;
    overflow: visible;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--ghost:hover {
  background: var(--color-primary-soft);
}

/* —— Hero —— */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: linear-gradient(165deg, var(--color-primary-soft) 0%, var(--color-bg) 55%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary-muted) 0%, var(--color-primary) 100%);
  position: relative;
}

.hero__visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  color: var(--color-white);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-height: 220px;
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0 0 2rem;
  max-width: 60ch;
  color: var(--color-text-muted);
}

.trust-strip {
  padding: 1rem 0;
  background: var(--color-white);
  border-block: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(27, 92, 161, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.card__link {
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* —— Why list —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-item {
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.why-item strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

/* —— News list —— */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-list li {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.news-list time {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.news-list h3 {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
}

.news-list a {
  text-decoration: none;
  color: inherit;
}

.news-list a:hover h3 {
  color: var(--color-primary);
}

/* —— CTA band —— */
.cta-band {
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-band .btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.cta-band .btn--primary:hover {
  background: var(--color-primary-soft);
}

/* —— Footer —— */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.95);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Page header (inner pages) —— */
.page-hero {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-primary-soft);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 65ch;
  color: var(--color-text-muted);
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  text-decoration: none;
}

/* —— Prose —— */
.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose figcaption {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* —— Contact —— */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* —— 404 —— */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

/* —— Home: full-bleed hero carousel —— */
.hero-carousel {
  position: relative;
  min-height: min(88vh, 820px);
  max-height: 920px;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-carousel__slides {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-carousel__slide.is-active img {
  transform: scale(1);
}

.hero-carousel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 74, 130, 0.82) 0%,
    rgba(27, 92, 161, 0.45) 42%,
    rgba(27, 92, 161, 0.25) 100%
  );
  z-index: 1;
}

.hero-carousel__content {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 820px);
  max-height: 920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4.5rem, 12vw, 6rem);
  color: var(--color-white);
}

.hero-carousel__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 38ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero-carousel__tagline {
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  max-width: 42ch;
  opacity: 0.95;
  font-weight: 500;
}

.hero-carousel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-carousel__actions .btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.hero-carousel__actions .btn--primary:hover {
  background: var(--color-primary-soft);
}

.hero-carousel__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

.hero-carousel__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-carousel__controls {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.hero-carousel__dot.is-active {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.15);
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}

.hero-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-carousel__prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-carousel__next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-carousel__credit {
  position: absolute;
  bottom: 0.5rem;
  right: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 3;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 200px;
  text-align: right;
  line-height: 1.3;
}

.hero-carousel__credit a {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
  .hero-carousel__arrow {
    display: none;
  }

  .hero-carousel__title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition: none;
  }

  .hero-carousel__slide img {
    transform: none !important;
    transition: none;
  }
}

/* —— Parallax band —— */
.parallax-band {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.parallax-band__bg {
  position: absolute;
  inset: -55px 0;
  background-size: cover;
  background-position: center 42%;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.parallax-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 92, 161, 0.88), rgba(20, 74, 130, 0.72));
  z-index: 1;
}

.parallax-band__inner {
  position: relative;
  z-index: 2;
  padding-block: 3rem;
}

.parallax-band__quote {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  max-width: 36ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

/* —— Accordion —— */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}

.accordion__item + .accordion__item {
  border-top: 1px solid var(--color-border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font: inherit;
  font-weight: 600;
  text-align: left;
  border: none;
  background: var(--color-white);
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s;
}

.accordion__trigger:hover {
  background: var(--color-primary-soft);
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion__panel {
  padding: 0 1.25rem 1.15rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  animation: accordion-open 0.35s ease;
}

@keyframes accordion-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .accordion__panel {
    animation: none;
  }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Card motion —— */
.card--motion {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card--motion:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 92, 161, 0.12);
}

/* —— Product thumb —— */
.card__thumb {
  border-radius: 8px;
  overflow: hidden;
  margin: -0.25rem -0.25rem 0.5rem;
  aspect-ratio: 16/10;
  background: var(--color-primary-soft);
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Article hero image —— */
.article-hero-img {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* —— News & products: mixed text + images (图文混排) —— */
.article-mixed {
  max-width: 56rem;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.article-mixed > p,
.article-mixed > h2,
.article-mixed > ul,
.article-mixed > ol,
.article-mixed > blockquote {
  max-width: 42rem;
}

.article-mixed > h2 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.article-mixed > p {
  margin: 0 0 1rem;
}

.article-mixed > ul,
.article-mixed > ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article-mixed > blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-muted);
  font-style: italic;
}

.article-mixed__wide {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-mixed__wide img {
  width: 100%;
  display: block;
  max-height: min(52vh, 420px);
  object-fit: cover;
}

.article-mixed__caption {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.article-mixed__split {
  display: grid;
  gap: 1.35rem;
  align-items: start;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .article-mixed__split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .article-mixed__split--reverse .article-mixed__media {
    order: 2;
  }

  .article-mixed__split--reverse .article-mixed__body {
    order: 1;
  }
}

.article-mixed__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-mixed__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.article-mixed__body h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.article-mixed__body p {
  margin: 0 0 0.85rem;
  color: var(--color-text-muted);
}

.article-mixed__body p:last-child {
  margin-bottom: 0;
}

.article-mixed__body ul,
.article-mixed__body ol {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}

.article-mixed__body li + li {
  margin-top: 0.35rem;
}

@media (max-width: 767px) {
  .article-mixed__float-fig {
    float: none !important;
    width: 100% !important;
    margin: 0 0 1rem !important;
  }

  .article-mixed__float-fig img {
    aspect-ratio: 16/10;
  }
}

.article-mixed__float-wrap {
  margin: 2rem 0;
}

.article-mixed__float-wrap::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .article-mixed__float-wrap .article-mixed__float-fig {
    float: left;
    width: min(44%, 340px);
    margin: 0.35rem 1.35rem 0.75rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .article-mixed__float-wrap .article-mixed__float-fig img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.article-mixed__float-wrap .article-mixed__float-text p {
  margin: 0 0 0.85rem;
}

.article-mixed__actions {
  margin-top: 2rem;
  padding-top: 0.5rem;
  clear: both;
}
