* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f4f4;
  color: #111;
}

/* HEADER */
.header {
  background: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  align-items: start;
}

.logo img {width: auto;
height: 80px;


}



.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

/* PAGE */
.page {
  max-width: 1200px;
  margin: auto;
  padding: 24px 16px;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.feature-large {
  grid-row: 1 / 3;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.feature-small {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.img {
  height: 220px;
  background: #ccc;
}

.content {
  padding: 16px;
}

.tag {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
}

.title {
  margin: 6px 0;
  font-weight: 700;
}

.meta {
  font-size: 12px;
  color: #666;
}

/* BUTTON */
.center {
  text-align: center;
  margin: 24px 0;
}

.btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #111;
  color: #fff;
}

/* AD BANNER */
.ad {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ad-text {
  max-width: 60%;
}

.ad-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
}

.ad-title {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0;
}

.ad-desc {
  font-size: 14px;
  color: #555;
}

.ad-img {
  width: 160px;
  height: 100px;
  background: #eee;
  border-radius: 6px;
}

/* TWO COLUMN LISTS */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.list-block {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
}

.list-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.list-item {
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.source {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
}

.headline {
  font-size: 14px;
  font-weight: 600;
}

/* THUMB LIST */
.thumb-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.thumb {
  width: 70px;
  height: 70px;
  background: #ddd;
  border-radius: 4px;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  padding: 32px 16px;
  background: #fff;
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-left {
  display: flex;
  gap: 16px;
}

.cover {
  width: 120px;
  height: 160px;
  background: #ddd;
  border-radius: 6px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
}

.footer-sub {
  color: #555;
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  gap: 8px;
}

.icon {
  width: 28px;
  height: 28px;
  background: #111;
  border-radius: 50%;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-title {
  font-size: 14px;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid #ccc;
}

.newsletter-form button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.footer-links a {
  color: #444;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}

