@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #2ec4b6;
  color: #243044;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  text-align: center;
  padding: 20px 0 10px;
}

.cover img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.site-title h1 {
  font-size: 50px;
  line-height: 1.15;
  margin: 16px 0 6px;
  color: #fff7e8;
  font-weight: 800;
}

.site-title p {
  font-size: 25px;
  margin: 0 0 18px;
  color: #fff7e8;
}

.top-nav,
.content,
.custom-sidebar {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.navigation li {
  list-style: none;
}

.navigation a {
  background: #7ed957;
  color: #243044;
  padding: 6px 11px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.navigation a:hover {
  background: #92e66f;
  text-decoration: none;
}

.post {
  margin-bottom: 26px;
}

.post h1,
.post-heading,
.post-heading a,
.post h1 a {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #3a3a3a !important;
  font-weight: 800;
}

time {
  display: block;
  font-size: 14px;
  color: #6d7480;
  margin-bottom: 14px;
}

.post-media-player {
  margin: 16px 0;
}

.post-description {
  background: #f4fffd;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.post-downloads {
  font-size: 14px;
  margin-top: 12px;
}

.sidebar-card {
  margin-bottom: 18px;
}

.sidebar-card h3 {
  font-size: 20px;
  color: #3a3a3a;
  margin: 0 0 8px;
  font-weight: 800;
}

.feeds,
.follow-links,
.follow {
  padding-left: 0;
}

.feeds li,
.follow-links li,
.follow li {
  list-style: none;
  margin-bottom: 8px;
}

.feeds a,
.follow-links a,
.follow a,
.subscribe-button-wrap a {
  background: #7ed957;
  color: #243044 !important;
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
}

.feeds a:hover,
.follow-links a:hover,
.follow a:hover,
.subscribe-button-wrap a:hover {
  background: #92e66f;
  text-decoration: none;
}

.subscribe-button-wrap * {
  background: #7ed957 !important;
  color: #243044 !important;
  border: none !important;
  border-radius: 20px !important;
  font-family: 'Nunito Sans', sans-serif !important;
}

.post-social-media,
.comments,
hr,
.powered-by-podigee {
  display: none;
}

@media (max-width: 600px) {
  .page {
    padding: 14px;
  }

  .top-nav,
  .content,
  .custom-sidebar {
    padding: 14px;
  }

  .site-title h1 {
    font-size: 38px;
  }

  .site-title p {
    font-size: 20px;
  }

  .cover img {
    width: 180px;
    height: 180px;
  }

  .post h1,
  .post-heading,
  .post-heading a,
  .post h1 a {
    font-size: 22px;
  }
}