body {
  background-color: #f4f4f4;
  font-family: 'Inter', sans-serif;
  zoom: 0.9;
}

.back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.back-btn:hover {
  transform: translateX(-5px);
  color: #00e050;
  text-decoration: none;
}

/* Header */
.media-header {
  background: white;
  padding-top: 20px;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  transform: translateX(-200px);
}

.logo-area img {
  height: 70px;
}

.logo-area img.main-logo-img {
  height: 115px;
}

.phones-mockup {
  position: absolute;
  right: 20%;
  bottom: -80px;
  height: 220px;
  z-index: 10;
}

.green-band {
  height: 15px;
  background-color: #00ff73;
  width: 100%;
  margin-top: 15px;
}

/* Main Content */
.media-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 15px;
}

/* Left Column */
.left-col {
  display: flex;
  flex-direction: column;
}

.providers-header {
  background-color: #00ff73;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.blog-post-card {
  border: 1px solid #ccc;
  background: white;
  margin-bottom: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-title {
  background: black;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
}

.blog-post-content {
  padding: 15px;
}

.blog-post-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Right Column */
.right-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  gap: 15px;
}

.share-btn {
  color: #00ff73;
  display: flex;
  align-items: center;
  gap: 5px;
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 8px solid black;
  margin-bottom: 15px;
}

.right-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .media-container {
    grid-template-columns: 1fr;
  }
  .header-content {
    justify-content: flex-start;
    padding-left: 100px;
  }
  .logo-area {
    transform: none;
  }
  .phones-mockup {
    right: 20px;
    height: 160px;
    bottom: -40px;
  }
}

@media (max-width: 767px) {
  .header-content {
    padding-left: 60px;
    padding-top: 30px;
  }
  .logo-area img.main-logo-img {
    height: 60px;
  }
  .phones-mockup {
    height: 120px;
    bottom: -30px;
    right: 10px;
  }
  .back-btn {
    top: 15px;
    left: 15px;
    font-size: 14px;
  }
  .media-container {
    padding: 0 15px;
  }
}
