:root {
  --red: #c8102e;
  --red-dark: #6e0d1e;
  --black: #121212;
  --off-white: #f4f3f2;
  --gray: #7c7c7c;
  --max-width: 480px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 30px;
}

.topbar {
  background: var(--red);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-social {
  gap: 8px;
}

.header-social .social-btn {
  width: 26px;
  height: 26px;
  border-color: rgba(255, 255, 255, 0.5);
}

.header-social .social-btn svg {
  width: 13px;
  height: 13px;
}

.intro {
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.75) 0%, rgba(110, 13, 30, 0.75) 130%), url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 36px 24px 30px;
  text-align: center;
}

.intro h1 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.intro-copy {
  margin: 0 0 24px;
  color: #c9c9c9;
  font-size: 14px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.social-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.app-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
}

.app-badge {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}

.app-badge:hover {
  opacity: 1;
}

.app-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.quicklinks {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 22px 10px;
  border-bottom: 1px solid #e8e6e4;
}

.quicklink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--black);
  text-align: center;
}

.qicon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qicon svg {
  width: 22px;
  height: 22px;
}

.qlabel {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.feed-section {
  background: #fff;
  padding: 28px 20px 24px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.feed-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
}

.feed-follow {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.feed-card {
  position: relative;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.feed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.15s ease;
}

.feed-card:hover::before {
  background: rgba(0, 0, 0, 0.15);
}

.youtube-section {
  background: #fff;
  padding: 28px 20px 24px;
  border-top: 1px solid #e8e6e4;
}

.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.articles-section {
  background: #fff;
  padding: 28px 20px 24px;
  border-top: 1px solid #e8e6e4;
}

.article-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  border: 1px solid #e8e6e4;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.article-card:hover {
  border-color: var(--red);
}

.article-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px 10px 0;
  min-width: 0;
}

.article-title {
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-excerpt {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.newsletter {
  background: #e9e7e4;
  padding: 26px 22px;
  text-align: center;
}

.newsletter h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}

.newsletter p {
  margin: 0 0 16px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #cfcbc6;
  background: #fff;
  color: var(--black);
  font-size: 14px;
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--red);
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 4px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover {
  filter: brightness(1.08);
}

.newsletter-fine {
  margin-top: 12px !important;
  font-size: 11px !important;
}

.newsletter-fine a {
  color: var(--red);
}

.newsletter-message {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

.footer {
  background: var(--black);
  color: #999;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin: 0;
  font-size: 11px;
  color: #777;
}

@media (max-width: 380px) {
  .quicklinks {
    gap: 2px;
    padding: 18px 4px;
  }

  .qicon {
    width: 38px;
    height: 38px;
  }

  .qicon svg {
    width: 19px;
    height: 19px;
  }

  .qlabel {
    font-size: 8.5px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
