@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap");

.breadcrumb {
  display: flex;
  gap: 0.5rem;
}

.breadcrumb__fragment {
  color: var(--grey-3);
  text-decoration: none;
}

.breadcrumb__fragment--current {
  color: var(--grey-6);
}

.breadcrumb__fragment:not(:first-child) {
  padding-left: 0.75rem;
  position: relative;
}

.breadcrumb__fragment:not(:first-child)::before {
  display: block;
  content: "-";
  position: absolute;
  left: 0;
}

#section-1 {
  padding: 0;
  box-sizing: border-box;
  margin-top: 20px;
  display: flex;
  gap: 22px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-1 {
    flex-wrap: wrap;
  }
}

@media (max-width: 479px) {
  #section-1 {
    flex-wrap: wrap;
  }
}

#section-1 .lastest-post {
  flex: 1 1 100%;
  min-height: 327px;
  position: relative;
  color: white;
  box-sizing: border-box;
  padding: 27px 46.5px;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

#section-1 .lastest-post__thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
  -webkit-filter: brightness(0.2);
  border-radius: 0.4rem;
}

#section-1 .lastest-post__author-category {
  text-transform: uppercase;
  flex: 0;
}

#section-1 .lastest-post__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: end;
}

#section-1 .lastest-post__title {
  font-family: Roboto;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

#section-1 .lastest-post__short-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#section-1 .new-posts {
  flex: 1 0 354px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-1 .new-posts {
    flex: 1;
  }
}

@media (max-width: 479px) {
  #section-1 .new-posts {
    flex: 1;
  }
}

#section-1 .new-posts__heading {
  color: var(--grey-10);
  padding-bottom: 22px;
  box-sizing: border-box;
  border-bottom: 1px solid #D8D8D8;
}

#section-1 .new-posts__list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

#section-1 .new-posts .post-item {
  box-sizing: border-box;
  display: flex;
  padding-top: 26px;
  flex-direction: column;
}

#section-1 .new-posts .post-item__date {
  color: var(--grey-5);
}

#section-1 .new-posts .post-item__title {
  color: #111210;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

#section-2 {
  display: flex;
  gap: 26px;
  margin-top: 39px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-2 {
    flex-wrap: wrap;
  }
}

@media (max-width: 479px) {
  #section-2 {
    flex-wrap: wrap;
  }
}

#section-2 .search-box {
  display: flex;
  gap: 1rem;
  box-sizing: border-box;
  padding: 24px 35px 24px 42px;
  background-color: var(--grey-6);
  background-color: var(--grey-2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

#section-2 .search-box__input {
  background-color: transparent;
  border: none;
  outline: none;
  flex: 1;
  color: var(--grey-10);
}

#section-2 .search-box__input::placeholder {
  color: var(--grey-6);
}

#section-2 .search-box__icon {
  height: 18px;
  width: 18px;
  padding: 0;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#section-2 .search-box__icon svg {
  height: 100%;
  width: 100%;
}

#section-2 .recent-posts {
  flex: 1 100%;
}

#section-2 .recent-posts .heading {
  color: var(--grey-10, #454545);
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  #section-2 .recent-posts .search-box {
    display: none;
  }
}

#section-2 .recent-posts .post-list {
  display: grid;
  gap: 24px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

#section-2 .recent-posts .post-list .post-card__thumb {
  display: block;
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

#section-2 .recent-posts .post-list .post-card__title {
  text-transform: uppercase;
  color: var(--grey-10);
  margin-top: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

#section-2 .recent-posts .post-list .post-card__short-content {
  color: var(--grey-8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#section-2 .sidebar {
  flex: 1 0 354px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-2 .sidebar {
    flex: 1 100%;
    margin-top: -40px;
  }
}

@media (max-width: 479px) {
  #section-2 .sidebar {
    flex: 1 100%;
    margin-top: -40px;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-2 .sidebar .search-box {
    display: none;
  }
}

@media (max-width: 479px) {
  #section-2 .sidebar .search-box {
    display: none;
  }
}

#section-2 .sidebar .tag-list {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #section-2 .sidebar .tag-list {
    display: none;
  }
}

@media (max-width: 479px) {
  #section-2 .sidebar .tag-list {
    display: none;
  }
}

#section-2 .sidebar .tag-list .tag {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 9px 10px;
  border: 1px solid var(--grey-3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  color: var(--grey-8);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}

#section-2 .sidebar .tag-list .tag__icon {
  height: 16px;
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#section-2 .sidebar .tag-list .tag__input {
  display: none;
}

#section-2 .sidebar .tag-list .tag:has(input:checked) {
  color: white;
  background-color: var(--blue-normal);
  border-color: var(--blue-normal);
  box-shadow: 0px 5px 16px rgba(226, 230, 245, 0.8);
}

#section-2 .promotion-banner {
  height: 305px;
  position: relative;
  box-sizing: border-box;
  padding: 21px 12px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

#section-2 .promotion-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  z-index: -1;
}

#section-2 .promotion-banner__title {
  color: var(--grey-10, #454545);
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#section-2 .promotion-banner__leading {
  margin: 16px 0 9px;
  color: var(--grey-10);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#section-2 .promotion-banner__cta {
  display: flex;
  padding: 10px;
  width: fit-content;
  min-width: 150px;
  justify-content: center;
  align-items: center;
  border-radius: 34px;
  border: 1px solid white;
  background: rgba(51, 188, 218, 0.8);
  color: white;
}

#section-2 .popular-panel {
  padding: 32px 27px 85px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

#section-2 .popular-panel__title {
  color: var(--grey-10, #454545);
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
}

#section-2 .popular-panel__list {
  margin-top: 20px;
  display: flex;
  gap: 35px;
  flex-direction: column;
}

#section-2 .popular-panel .popular-post {
  display: flex;
  column-gap: 20px;
}

#section-2 .popular-panel .popular-post__thumb {
  border-radius: 8px;
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

#section-2 .popular-panel .popular-post__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#section-2 .popular-panel .popular-post__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--grey-10);
  line-height: 1.4;
  text-decoration: none;
}

#section-2 .popular-panel .popular-post__category {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--Foundation-Grey-grey-6, #999);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}

#section-2 .newsletter-signup {
  box-sizing: border-box;
  padding: 31px 31px 51px;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

#section-2 .newsletter-signup__title {
  color: var(--grey-10, #454545);
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
}

#section-2 .newsletter-signup__email-box {
  display: flex;
  padding: 0;
  box-sizing: border-box;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.14);
  max-width: 282px;
  margin: 0 auto;
}

#section-2 .newsletter-signup__email-input {
  padding-left: 16px;
  box-sizing: border-box;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--grey-10);
  flex: 1;
}

#section-2 .newsletter-signup__email-input::placeholder {
  color: #9B9B9B;
}

#section-2 .newsletter-signup__email-submit {
  padding: 12px 19px;
  box-sizing: border-box;
  background-color: var(--salmon-normal);
  height: 100%;
  color: white;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  outline: none;
}

#section-2 .social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 29px 16px 36px;
  box-sizing: border-box;
  gap: 29px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

#section-2 .social-media__title {
  color: #111210;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

#section-2 .social-media__list {
  display: flex;
  gap: 18px;
}

#section-2 .social-media__link {
  text-decoration: none;
}

.paginator {
  display: flex;
  gap: 25px;
}

@media (max-width: 479px) {
  .paginator {
    gap: 0.75rem;
  }
}

.paginator__index {
  height: 50px;
  width: 50px;
  padding: 14px;
  box-sizing: border-box;
  color: var(--grey-10);
  background-color: var(--grey-2);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.paginator__index--disabled {
  color: var(--grey-6);
  cursor: default;
}

@media (max-width: 479px) {
  .paginator__index {
    height: 32px;
    width: 32px;
    padding: 0;
  }
}

.paginator__index--dotted {
  background-color: transparent;
  display: flex;
  gap: 8px;
  padding: 0;
}

.paginator__index--highlight {
  color: #FEF2F1;
  background-color: var(--salmon-normal);
}

.paginator__index:disabled {
  color: var(--grey-6);
}

.paginator__dot {
  border-radius: 3px;
  height: 6px;
  width: 6px;
  background-color: var(--grey-2);
}

/*# sourceMappingURL=blog-archive.css.map */