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

body {
  background: #fafafa;
  font-family: "Heavy Sans", "Barlow", "Arial Black", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin-bottom: 56px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 14px;
  border-radius: 100px;
  text-decoration: none;
  background: #0b1f33;
  color: #fafafa;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.18);
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  opacity: 0.95;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-icon.jl {
  padding: 0;
}

.btn-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-label span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.btn-label strong {
  font-size: 16px;
  font-weight: 900;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.latest-posts {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
}

.latest-posts h2 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(11, 31, 51, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(11, 31, 51, 0.16);
}

.post-card-cover {
  width: 100%;
  height: 160px;
  background-color: #0b1f33;
  overflow: hidden;
}

.post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post-card-body {
  padding: 14px 16px 16px;
}

.post-card-tag {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
}

.post-card-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: #0b1f33;
}

@media (max-width: 480px) {
  .logo {
    max-width: 280px;
    margin-bottom: 44px;
  }

  .post-cards {
    grid-template-columns: 1fr;
  }
}
