/* 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: #f0f0f0;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 860px;
  margin: 30px auto;
  background: #fff;
  padding: 30px 40px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .container {
    margin: 15px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    margin: 10px;
    padding: 15px;
  }
}

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

/* Badge */
.badge {
  display: inline-block;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 2px 12px;
  font-size: 13px;
  color: #555;
  background: #fff;
  margin-bottom: 10px;
}

/* Heading */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 8px;
}

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

/* Small / Views line */
small {
  display: block;
  font-size: 14px;
  color: #c0392b;
  margin-bottom: 18px;
}

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

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

/* Main Image */
.container > a img,
.container > a {
  display: block;
  width: 100%;
  cursor: pointer;
}

.container > a img {
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Paragraphs */
.container p {
  font-size: 17px;
  line-height: 1.65;
  color: #222;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .container p {
    font-size: 15px;
  }
}

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

.btn:hover {
  background: #0d6edb;
}

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

/* Footer */
.footer {
  max-width: 860px;
  margin: 30px auto 40px;
  text-align: center;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  padding: 0 40px;
}

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

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

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