/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #edf0f3;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Advertorial top label */
.advertorial-label {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0 10px;
}

/* Container / Card */
.container {
  max-width: 920px;
  margin: 0 auto 40px;
  background: #fff;
  padding: 32px 50px 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

@media (max-width: 960px) {
  .container {
    margin: 0 12px 30px;
    padding: 24px 20px 30px;
  }
}

@media (max-width: 600px) {
  .container {
    margin: 0 8px 20px;
    padding: 18px 14px 24px;
  }
}

/* Text Center */
.text-center {
  text-align: center;
}

/* Badge */
.badge {
  display: inline-block;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 3px 14px;
  font-size: 12.5px;
  color: #555;
  background: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* Heading */
h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.22;
  margin-bottom: 10px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
}

/* Views / Comments line */
.views-line {
  display: block;
  font-size: 14.5px;
  color: #c0392b;
  margin-bottom: 20px;
}

.views-line .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  color: #e74c3c;
}

.views-line .icon svg {
  vertical-align: -2px;
}

/* GIF / Video Container */
.video-wrapper {
  display: block;
  width: 100%;
  position: relative;
  cursor: pointer;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 2px;
}

.video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Play button overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  pointer-events: none;
}

.play-overlay svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* CTA Link text */
.cta-link {
  display: block;
  text-align: left;
  font-size: 17.5px;
  color: #1a6fc4;
  text-decoration: underline;
  margin-bottom: 22px;
  line-height: 1.5;
}

.cta-link:hover {
  color: #0d4f8a;
}

@media (max-width: 600px) {
  .cta-link {
    font-size: 15.5px;
  }
}

/* CTA Button */
.btn {
  display: inline-block;
  background: #d63031;
  color: #fff !important;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.3px;
}

.btn:hover {
  background: #b71c1c;
}

@media (max-width: 600px) {
  .btn {
    font-size: 17px;
    padding: 16px 36px;
    width: 100%;
  }
}

/* Footer */
.footer {
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 11.5px;
  color: #999;
  line-height: 1.65;
  padding: 0 50px;
}

.footer a {
  color: #999;
  text-decoration: underline;
}

.footer a:hover {
  color: #666;
}

@media (max-width: 960px) {
  .footer {
    padding: 0 14px;
  }
}
