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

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background-color: hsl(36, 100%, 99%);
}
body .page-wrapper {
  max-width: 1200px;
  padding: 1.2rem 1.5rem;
}
@media (min-width: 1024px) {
  body .page-wrapper {
    padding: 4rem 3rem;
    margin: 0 auto;
  }
}
body .page-wrapper .header {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
body .page-wrapper .header .logo {
  width: 45px;
  cursor: pointer;
  object-fit: cover;
}
body .page-wrapper .header .menu-toggle-icon {
  width: 40px;
  height: 20px;
  object-fit: cover;
}
@media (min-width: 768px) {
  body .page-wrapper .header .menu-toggle-icon {
    display: none;
  }
}
@media (min-width: 1024px) {
  body .page-wrapper .header .logo {
    width: 60px;
  }
}
body .page-wrapper .header .mobile-menu {
  display: block;
}
@media (max-width: 768px) {
  body .page-wrapper .header .mobile-menu {
    display: none;
    position: fixed;
    right: 0;
    background-color: hsl(36, 100%, 99%);
    min-height: 100vh;
    width: 60vw;
    flex-direction: column;
    margin-top: -37px;
    padding: 60px 5px;
    z-index: 1000;
    box-shadow: 5px 1px 20px rgba(0, 0, 0, 0.25);
  }
}
body .page-wrapper .header .mobile-menu .close-toggle-menu {
  display: none;
  cursor: pointer;
  width: 35px;
  margin-left: auto;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  body .page-wrapper .header .mobile-menu .close-toggle-menu {
    display: block;
    margin-top: -20px;
    margin-right: 20px;
  }
}
body .page-wrapper .header .mobile-menu ul {
  display: flex;
  list-style: none;
  flex-direction: column;
}
@media (min-width: 768px) {
  body .page-wrapper .header .mobile-menu ul {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  body .page-wrapper .header .mobile-menu ul li {
    padding: 0.875rem;
  }
}
body .page-wrapper .header .mobile-menu ul li a {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: hsl(236, 13%, 42%);
  transition: color 0.3s;
}
body .page-wrapper .header .mobile-menu ul li a:hover {
  color: hsl(5, 85%, 63%);
}
@media (max-width: 768px) {
  body .page-wrapper .header .mobile-menu ul li a {
    font-size: 1.1rem;
    font-weight: 600;
  }
}
body .page-wrapper .main-content {
  margin-top: 25px;
  padding: 2px;
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 350px;
    grid-template-rows: auto auto auto;
    grid-template-areas: "hero-section hero-section hero-section news-sidebar" "hero-section hero-section hero-section news-sidebar" "hero-section hero-section hero-section news-sidebar";
    gap: 2rem;
  }
}
body .page-wrapper .main-content .hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content .hero-section {
    grid-area: hero-section;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: "image image image image" "title title desc desc" "title title btn btn";
  }
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content .hero-section picture {
    grid-area: image;
    margin-bottom: 10px;
  }
}
body .page-wrapper .main-content .hero-section picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
body .page-wrapper .main-content .hero-section .hero-title {
  padding: 0 0.3em 0 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(240, 100%, 5%);
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content .hero-section .hero-title {
    grid-area: title;
    font-size: 3.8rem;
    padding: 0;
    line-height: 1;
  }
}
body .page-wrapper .main-content .hero-section .hero-description {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
  color: hsl(236, 13%, 42%);
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content .hero-section .hero-description {
    grid-area: desc;
    font-size: 1.05rem;
  }
}
body .page-wrapper .main-content .hero-section .read-more-btn {
  border: none;
  background-color: hsl(5, 85%, 63%);
  padding: 16px 12px;
  width: 180px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
body .page-wrapper .main-content .hero-section .read-more-btn:hover {
  background-color: hsl(240, 100%, 5%);
  color: hsl(36, 100%, 99%);
}
body .page-wrapper .main-content .news-sidebar {
  background-color: hsl(240, 100%, 5%);
  color: hsl(36, 100%, 99%);
  padding: 1.5rem;
  padding-bottom: 0.5rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  body .page-wrapper .main-content .news-sidebar {
    grid-area: news-sidebar;
    margin-top: 0;
    padding: 1rem;
  }
}
body .page-wrapper .main-content .news-sidebar .news-header {
  font-size: 2rem;
  color: hsl(35, 77%, 62%);
}
body .page-wrapper .main-content .news-sidebar .news-item {
  margin: 2rem 0;
}
body .page-wrapper .main-content .news-sidebar .news-item .news-item-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: hsl(36, 100%, 99%);
  cursor: pointer;
}
body .page-wrapper .main-content .news-sidebar .news-item .news-item-title:hover {
  color: hsl(35, 77%, 62%);
}
body .page-wrapper .main-content .news-sidebar .news-item .news-item-description {
  color: hsl(233, 8%, 79%);
  opacity: 0.7;
  font-weight: 500;
  line-height: 1.6;
  font-size: 14px;
}
body .page-wrapper .main-content .news-sidebar hr {
  border: none;
  border-top: 1px solid hsl(236, 13%, 42%);
}
body .page-wrapper .blogs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
}
@media (min-width: 1024px) {
  body .page-wrapper .blogs {
    flex-direction: row;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .page-wrapper .blogs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
body .page-wrapper .blogs .blog {
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .page-wrapper .blogs .blog {
    flex: 0 0 48%;
  }
}
body .page-wrapper .blogs .blog img {
  flex: 1;
  width: auto;
  max-width: 100px;
  height: auto;
  object-fit: cover;
}
body .page-wrapper .blogs .blog .content {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body .page-wrapper .blogs .blog .content .blog-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(5, 85%, 63%);
  letter-spacing: 2px;
}
body .page-wrapper .blogs .blog .content .blog-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
}
body .page-wrapper .blogs .blog .content .blog-desc {
  color: hsl(236, 13%, 42%);
  line-height: 1.6;
  font-weight: 500;
  font-size: 0.875rem;
}
body footer .attribution {
  font-size: 11px;
  text-align: center;
}
body footer .attribution a {
  color: hsl(228, 45%, 44%);
}

/*# sourceMappingURL=style.css.map */
