@charset "UTF-8";
:root {
  --primary-color: ;
  --highlight-color: ;
  --background-color: ;
  --border-color: ;
  --text-color: ;
  --lightgray: ;
  --cookie: ;
  --color-button-start-test: ;
  --background-topic: ;
}

.header-common * {
  box-sizing: border-box;
}

.header-common {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0588235294);
  background: #ffffff;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-common .header-layout {
  max-width: 100% !important;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 84px;
}
.header-common .header-left {
  display: flex;
  align-items: center;
}
.header-common .header-left .logo {
  height: 40px;
  width: 143px;
  display: flex;
  align-items: center;
  margin-right: 60px;
}
.header-common .header-left .logo svg {
  display: flex;
}
.header-common .header-left .header-left-item {
  display: flex;
  align-items: center;
}
.header-common .header-left .header-left-item a {
  text-decoration: none;
}
.header-common .header-left .header-left-item a p {
  white-space: nowrap;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin-left: 20px;
}
.header-common .header-left .class-management {
  margin-right: 17px;
}
.header-common .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.header-common .header-right .search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 16px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.0588235294);
  border-radius: 6px;
  gap: 5px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(33, 33, 33, 0.0392156863);
  max-width: 560px;
}
.header-common .header-right .search-bar .search-input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.8509803922);
  border: none;
  outline: none;
  background-color: transparent;
}
.header-common .header-right .search-bar .search-input::placeholder {
  color: rgba(0, 0, 0, 0.2509803922);
}
.header-common .header-right .search-bar .search-input:focus {
  outline: none;
}
.header-common .header-right .search-bar:hover {
  background-color: #ffffff;
}
.header-common .header-right .search-bar:focus-within {
  background-color: #fff;
  border-color: #85a5ff;
}
.header-common .header-right .search-bar .button-search {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 6px 7px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.0431372549);
  border-radius: 6px;
  background-color: #597ef7;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.header-common .header-right .search-bar .button-search:hover {
  background-color: #85a5ff;
}
.header-common .header-right .btn-enter-code {
  text-decoration: none;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  color: #2d3642;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin: 0 16px;
  border: 1px solid #d9d9d9;
  transition: border-color 0.2s ease, color 0.2s ease;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.0156862745);
  cursor: pointer;
  min-width: 89px;
}
@media screen and (min-width: 769px) {
  .header-common .header-right .btn-enter-code:hover {
    border: 1px solid #85a5ff;
    color: #85a5ff;
  }
}
.header-common .header-right .btn-login {
  text-decoration: none;
  white-space: nowrap;
  background-color: #597ef7;
  border: 1px solid #597ef7;
  border-radius: 6px;
  padding: 4px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.0431372549);
  min-width: 68px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .header-common .header-right .btn-login:hover {
    background-color: #85a5ff;
    border-color: #85a5ff;
  }
}

@media screen and (max-width: 768px) {
  .header-common .header-layout .header-left .logo {
    height: 32px;
    width: unset;
    margin-right: 0;
  }
  .header-common .header-layout .header-left .left-mobile {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header-common .header-layout .header-left .left-mobile .search-mobile {
    display: flex;
  }
  .header-common .header-layout .header-left .dropdown-trigger {
    display: none;
  }
  .header-common .header-layout .header-left .header-left-item {
    display: none;
  }
  .header-common .header-layout .header-right .search-bar {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .cluster-items-header {
    display: flex;
  }
  .cluster-items-header .item-header {
    display: flex;
  }
}
#over-layout {
  background-color: rgba(33, 33, 33, 0.5215686275);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9998;
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
}

.dropdown-trigger {
  position: relative;
  display: none;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3642;
  transition: all 0.2s ease;
  margin-left: 20px;
  user-select: none;
  min-width: fit-content;
  z-index: 999;
  text-decoration: none;
}
.dropdown-trigger .cluster-btn-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.dropdown-trigger .cluster-btn-dropdown svg {
  color: #2d3642;
}
.dropdown-trigger::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 999;
  cursor: pointer;
}
.dropdown-trigger:first-of-type {
  margin-left: 0;
}
.dropdown-trigger span {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  color: #2d3642;
  transition: color 0.2s ease;
}
.dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease-in-out;
  pointer-events: none;
}
.dropdown-trigger:hover .text-dropdown {
  color: #3b82f6;
}
.dropdown-trigger:hover svg {
  transform: rotate(-180deg);
  color: #3b82f6;
}

.dropdown-content {
  position: absolute;
  top: 32px;
  left: 0;
  background: #ffffff;
  z-index: 999;
  filter: drop-shadow(2px 4px 10px rgba(33, 33, 33, 0.2));
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 6px;
  cursor: default;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-out, clip-path 0.3s ease-out;
  box-shadow: -2px 2px 16px 0px rgba(0, 0, 0, 0.0588235294);
}
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: none;
}
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-content.dropdown-content-worksheet {
  width: fit-content;
  padding: 16px;
  left: -44px;
}
.dropdown-content.dropdown-content-resource {
  width: 139px;
}

.dropdown-item {
  width: 100%;
  height: 32px;
  padding: 5px 12px;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
  height: 100%;
}
.dropdown-item a:hover {
  color: #3b82f6;
}
.dropdown-item a:hover .dropdown-icon {
  color: #3b82f6;
}
.dropdown-item:hover {
  background: #f5f5f5;
}
.dropdown-item .dropdown-icon {
  display: flex;
  align-items: center;
  color: #6b7280;
}
.dropdown-item .dropdown-icon svg {
  transition: none;
  transform: none;
  color: inherit;
}

.dropdown-grid-container {
  display: flex;
  flex-direction: column;
}
.dropdown-grid-container .dropdown-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(7, auto);
  grid-template-areas: "left1 right1" "left2 right2" "left3 right3" "left4 right4" "left5 right5" "left6 right6" "left7 right7";
  gap: 8px 24px;
}
.dropdown-grid-container .dropdown-grid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  color: #374151;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  padding: 6px 4px;
}
.dropdown-grid-container .dropdown-grid-item:hover {
  background-color: #f5f5f5;
}
.dropdown-grid-container .dropdown-grid-item:hover svg {
  opacity: 1;
}
.dropdown-grid-container .dropdown-grid-item svg {
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: unset;
}
.dropdown-grid-container .dropdown-grid-item p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #2d3642;
}

.footer-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.footer-section:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}
.footer-section .footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 8px;
  color: white;
}
.footer-section .footer-icon svg {
  transition: none;
  transform: none;
}
.footer-section .footer-content h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}
.footer-section .footer-content p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

.dropdown-overlay {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(33, 33, 33, 0.24);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 12;
}
.dropdown-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 769px) {
  .dropdown-trigger {
    display: flex;
  }
  .dropdown-footer .footer-section {
    padding: 20px;
  }
  .dropdown-footer .footer-section .footer-icon {
    width: 48px;
    height: 48px;
  }
  .dropdown-footer .footer-section .footer-content h4 {
    font-size: 16px;
  }
  .dropdown-footer .footer-section .footer-content p {
    font-size: 13px;
  }
}
*::-webkit-scrollbar {
  height: 3px;
  width: 7px !important;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.new-badge-wrapper {
  display: inline-block;
  position: absolute;
  top: -4px;
  right: -9px;
  transform: translate(50%, -50%);
  opacity: 0;
  animation: fadeIn 0.3s ease-in-out 2s forwards;
}
.new-badge-wrapper .new-badge-background {
  display: inline-flex;
  background-color: #ffa928;
  border-radius: 4px;
  padding: 0px 4px;
  animation: bgScale 2.2s ease-in-out infinite;
  transform-origin: center;
  box-sizing: border-box;
  gap: 2px;
  height: 14px;
}
.new-badge-wrapper .new-badge-char {
  color: #fff;
  font-weight: 600;
  font-size: 9px;
  transform-origin: center;
  line-height: 14px;
  animation-duration: 2.2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.new-badge-wrapper .new-badge-char.n {
  animation-name: textScaleN;
}
.new-badge-wrapper .new-badge-char.e {
  animation-name: textScaleE;
}
.new-badge-wrapper .new-badge-char.w {
  animation-name: textScaleW;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1);
  }
}
@keyframes bgScale {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes textScaleN {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.2);
  }
  45% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes textScaleE {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes textScaleW {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.4);
  }
  55% {
    transform: scale(1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.class-management {
  position: relative;
}

.box-card-btn-create-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  width: 584px;
  height: 124px;
  gap: 16px;
  border-radius: 8px;
  padding: 16px;
  align-items: stretch;
  background-color: #f0f5ff;
  box-sizing: border-box;
}
.box-card-btn-create-container a {
  text-decoration: none;
}
.box-card-btn-create-container .card-new-container {
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  box-sizing: border-box;
  filter: blur(0);
  background-color: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  width: 268px;
  height: 92px;
}
.box-card-btn-create-container .card-new-container .card-new {
  gap: 4px;
  margin: 24px 0 24px 16px;
}
.box-card-btn-create-container .card-new-container:hover {
  border: 1px solid #597ef7;
}
.box-card-btn-create-container .card-new-container .card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  color: #080808;
}
.box-card-btn-create-container .card-new-container p {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  margin: 0;
  color: #626262;
}
.box-card-btn-create-container .card-new-container .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 90px;
  overflow: hidden;
  transform: translate(14px, 20px);
  transition: transform 0.3s ease;
  position: relative;
}
.box-card-btn-create-container .card-new-container .image {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  transition: transform 0.3s ease;
}
.box-card-btn-create-container .card-new-container .image1 {
  z-index: 2;
}
.box-card-btn-create-container .card-new-container .image2 {
  transform: translate(-8px, -4px);
  z-index: 1;
}
.box-card-btn-create-container .card-new-container:hover .image-wrapper .image1 {
  z-index: 3;
  transform: scale(1.1);
}
.box-card-btn-create-container .card-new-container:hover .image-wrapper .image2 {
  transform: scale(1.1) rotate(6deg) translate(-8px, -6px);
}

.menu-button-classic {
  position: fixed;
  top: 60px;
  right: 12px;
  z-index: 99999;
  background: #fff9e7;
  display: flex;
  flex-direction: column;
  padding: 4px;
  border-radius: 100px;
  cursor: pointer;
}

.menu-list {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  background: #fff9e7;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 16px 0;
  padding-bottom: 80px;
  box-sizing: border-box;
  width: 0;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  transition: 0.2s all;
  overflow-y: auto;
}
.menu-list .cluster-item-header-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0 12px 12px;
}
.menu-list .cluster-item-header-mobile a {
  color: #212121;
  text-decoration: none;
}
.menu-list .cluster-item-header-mobile .item-header-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px;
}
.menu-list .cluster-item-header-mobile .item-header-mobile span {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.1px;
  text-align: left;
}
.menu-list .cluster-item-header-mobile .item-get-pro {
  width: 100%;
  gap: 0;
  justify-content: space-between;
  padding: 2px 6.5px;
  background-image: url("https://cdn.worksheetzone.org/images-web/background-pro-wsz.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
  border: 1.5px solid #d0e1fd;
  border-radius: 6px;
}
.menu-list .cluster-item-header-mobile .item-get-pro .get-pro-left {
  display: flex;
  gap: 8px;
  align-items: center;
}
.menu-list .cluster-item-header-mobile .item-get-pro span {
  font-size: 12px;
  font-weight: 600;
  line-height: 16.37px;
  text-align: left;
  color: #fff;
}
.menu-list .line {
  width: 100%;
  height: 1px;
  background-color: rgba(33, 33, 33, 0.1215686275);
}
.menu-list.open {
  width: 226px;
  opacity: 1;
  visibility: visible;
}
.menu-list .top-drawer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.menu-list .top-drawer .close-button {
  align-items: center;
  display: flex;
  cursor: pointer;
  width: fit-content;
  right: 0;
}
.menu-list .top-drawer .close-button svg {
  display: flex;
}
.menu-list .line {
  width: 100%;
  height: 1px;
  background-color: rgba(33, 33, 33, 0.1215686275);
}
.menu-list .main-content {
  padding-left: 16px;
}
.menu-list .main-content .label {
  display: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.82px;
  letter-spacing: 0.005em;
  text-align: left;
  color: rgba(45, 54, 66, 0.5215686275);
}
.menu-list .main-content .menu-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}
.menu-list .main-content .menu-item .icon {
  transition: transform 0.2s ease;
}
.menu-list .main-content .menu-item .icon svg {
  width: 16px;
  height: 16px;
}
.menu-list .main-content .menu-item .text {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.1px;
  letter-spacing: 0.005em;
  text-align: left;
  color: #374151;
}
.menu-list .main-content .menu-item .icon {
  display: flex;
}
.menu-list .main-content .menu-item-list {
  display: none;
  transition: all 0.2s;
}
.menu-list .main-content .menu-item-list .item-tag-a {
  color: rgba(45, 54, 66, 0.5215686275);
  text-decoration: none;
}
.menu-list .main-content .menu-item-list .item {
  padding: 10px 0 10px 36px;
  font-size: 12px;
  line-height: 16.37px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: left;
  color: rgba(45, 54, 66, 0.5215686275);
  white-space: nowrap;
}
.menu-list .main-content .menu-item-list .menu-item-content .menu-item {
  padding: 6px 0;
}
.menu-list .main-content .menu-item-list .menu-item-content .menu-item .item {
  padding-top: 4px;
  padding-bottom: 4px;
}
.menu-list .main-content .menu-item-list .menu-item-content > div:last-child {
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .menu-list {
    padding: 16px 16px 16px 56px;
  }
  .menu-list.open {
    width: 472px;
  }
  .menu-list .line {
    display: none;
  }
  .menu-list .cluster-item-header-mobile {
    display: none;
  }
  .menu-list .main-content {
    margin-top: 145px;
    padding-left: 0;
  }
  .menu-list .main-content .label {
    display: block;
  }
  .menu-list .main-content .menu-item .icon svg {
    width: 40px;
    height: 40px;
  }
  .menu-list .main-content .menu-item .text {
    font-size: 32px;
    font-weight: 500;
    line-height: 43.65px;
  }
  .menu-list .main-content .menu-item-list .menu-item-content svg {
    width: 24px;
  }
  .menu-list .main-content .menu-item-list .menu-item-content .menu-item {
    padding: 6px 0;
  }
  .menu-list .main-content .menu-item-list .menu-item-content .menu-item .item {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .menu-list .main-content .menu-item-list .menu-item-content > div:last-child {
    margin-bottom: 4px;
  }
  .menu-list .main-content .menu-item-list .item {
    color: rgba(45, 54, 66, 0.5215686275);
    font-size: 20px;
    line-height: 24px;
  }
}

.blog-page {
  background-color: #f5eeda;
}
.blog-page .btn-check-var {
  padding: 12px;
}
.blog-page .header-content {
  display: flex;
  padding: 32px 0 35px 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 76.38px;
  text-align: left;
  color: #2d3642;
}
.blog-page .header-content .label {
  font-size: 56px;
  font-weight: 800;
  line-height: 76.38px;
  text-align: left;
  margin: 0;
}
.blog-page .blog-content-trending {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 32px;
}
.blog-page .blog-content-trending .latest-post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
}
.blog-page .blog-content-trending .latest-post .cluster-link-lastest-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 4px solid rgba(124, 111, 91, 0.2392156863);
}
.blog-page .blog-content-trending .read-more-content {
  text-decoration: none;
  display: block;
  padding-left: 36px;
  border-left: 4px solid transparent;
  margin-left: -4px;
  transition: border-left 0.2s ease;
}
.blog-page .blog-content-trending .read-more-content p {
  line-height: 1.5em;
  margin: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(45, 54, 66, 0.2392156863);
  color: transparent;
}
.blog-page .blog-content-trending .read-more-content .article-content-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  text-align: left;
  color: #d9d9d9;
  transition: all 0.2s ease;
}
.blog-page .blog-content-trending .read-more-content .article-content {
  font-size: 30px;
  font-weight: 600;
  line-height: 40.92px;
  text-align: left;
}
.blog-page .blog-content-trending .read-more-content.active {
  border-left: 4px solid #2d3642;
}
.blog-page .blog-content-trending .read-more-content.active p {
  -webkit-text-stroke-width: 0;
}
.blog-page .blog-content-trending .read-more-content.active .article-content-title {
  color: #2d3642;
  font-weight: 700;
}
.blog-page .blog-content-trending .read-more-content.active .article-content {
  color: #2d3642;
  font-weight: 600;
}
.blog-page .blog-content-trending .read-more-content:hover {
  border-left: 4px solid #2d3642;
}
.blog-page .blog-content-trending .read-more-content:hover p {
  -webkit-text-stroke-width: 0;
}
.blog-page .blog-content-trending .read-more-content:hover .article-content-title {
  color: #2d3642;
  font-weight: 700;
}
.blog-page .blog-content-trending .read-more-content:hover .article-content {
  color: #2d3642;
  font-weight: 600;
}
.blog-page .blog-content-trending .post-thumbnail {
  height: fit-content;
  max-width: 417px;
  width: 100%;
  border-radius: 24px;
  position: relative;
}
.blog-page .blog-content-trending .post-thumbnail .swiper-container-blog-trending {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1;
  background: rgba(33, 33, 33, 0.2);
}
.blog-page .blog-content-trending .post-thumbnail .swiper-container-blog-trending .swiper {
  width: 100%;
}
.blog-page .blog-content-trending .post-thumbnail .swiper-container-blog-trending .swiper-container {
  width: 100%;
}
.blog-page .blog-content-trending .post-thumbnail .swiper-container-blog-trending .content-image-check-var {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.blog-page .blog-content-trending .post-thumbnail .swiper-pagination {
  display: none;
  justify-content: center;
}
.blog-page .blog-content-trending .post-thumbnail .btn-action {
  display: none;
  position: absolute;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: rgba(33, 33, 33, 0.5215686275);
  color: rgba(255, 255, 255, 0.6784313725);
  border-radius: 999px;
}
.blog-page .blog-content-trending .post-thumbnail .btn-next {
  right: 4px;
  top: 50%;
}
.blog-page .blog-content-trending .post-thumbnail .btn-prev {
  left: 4px;
  top: 50%;
}
.blog-page .blog-content-trending .post-thumbnail .read-more-image {
  display: none;
}
.blog-page .blog-content-trending .post-thumbnail .read-more-image.active {
  display: block;
}
.blog-page .blog-content-trending .post-thumbnail .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-page .cluster-blogs {
  background-color: #fff9e7;
  padding-top: 40px;
  padding-bottom: 50px;
}
.blog-page .cluster-blogs .blogs .row .all-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  column-gap: 40px;
  row-gap: 47px;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all {
  display: flex;
  justify-content: center;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all {
  text-decoration: none;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article {
  border-radius: 16px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article:hover {
  transform: translateY(-3px);
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-thumbnail {
  width: 360px;
  height: 360px;
  background: rgba(33, 33, 33, 0.2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .post-author {
  display: flex;
  align-items: center;
  margin: 16px 0 0 16px;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .post-author img {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin-right: 8px;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .post-author span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #2d3642;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content {
  padding: 8px 16px 16px 16px;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content h2 {
  max-width: 325px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.82px;
  text-align: left;
  color: #2d3642;
  overflow: hidden; /* Ẩn nội dung vượt quá */
  text-overflow: ellipsis; /* Thêm dấu "..." khi bị cắt */
  display: -webkit-box; /* Sử dụng box layout */
  -webkit-line-clamp: 2; /* Giới hạn số dòng hiển thị */
  -webkit-box-orient: vertical; /* Hướng bố cục theo chiều dọc */
  width: 100%; /* Đặt chiều rộng cố định */
  height: 44px;
  margin: 0;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom span {
  color: #2d3642;
  outline: 1px solid rgba(45, 54, 66, 0.6509803922);
  padding: 12px 28px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom span:hover {
  background-color: #2d3642;
  outline: 1px solid rgba(255, 255, 255, 0.2392156863);
  color: #fff;
}
.blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(45, 54, 66, 0.5215686275);
  margin: 0;
}
.blog-page .cluster-blogs .blogs .row .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.blog-page .cluster-blogs .blogs .row .pagination .btn-next-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-page .cluster-blogs .blogs .row .pagination a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5em;
  color: #212121;
  font-weight: 500;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  line-height: 40px;
  text-align: center;
}
.blog-page .cluster-blogs .blogs .row .pagination a.first-page {
  pointer-events: none;
}
.blog-page .cluster-blogs .blogs .row .pagination a.end-page {
  pointer-events: none;
}
.blog-page .cluster-blogs .blogs .row .pagination a.active {
  background: rgba(33, 33, 33, 0.0784313725);
}
.blog-page .cluster-blogs .blogs .row .pagination a:not(:first-child):not(:last-child) {
  margin: 0 4px;
}
.blog-page .cluster-blogs .blogs .row .pagination a:first-child {
  color: rgba(33, 33, 33, 0.5215686275);
  background: #fff;
  border: 1px solid rgba(124, 111, 91, 0.2392156863);
  margin-right: 28px;
}
.blog-page .cluster-blogs .blogs .row .pagination a:last-child {
  margin-left: 28px;
  color: rgba(33, 33, 33, 0.5215686275);
  background: #fff;
  border: 1px solid rgba(124, 111, 91, 0.2392156863);
}
@media screen and (max-width: 768px) {
  .blog-page .header-content {
    display: none;
    padding: 32px 0;
  }
  .blog-page .header-content .v4-container-component {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .blog-page .header-content .v4-container-component .download-links {
    margin-top: 32px;
  }
  .blog-page .header-content .v4-container-component .download-links a {
    text-decoration: none;
  }
  .blog-page .blog-content-trending {
    flex-direction: column-reverse;
    padding-bottom: 0;
    gap: 0;
    padding-top: 16px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .blog-page .blog-content-trending .article-content-title {
    height: 100px;
  }
  .blog-page .blog-content-trending .latest-post {
    display: flex;
    border: none;
  }
  .blog-page .blog-content-trending .latest-post .cluster-link-lastest-post {
    display: none;
    border: none;
    flex-direction: row;
    gap: 4px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .blog-page .blog-content-trending .latest-post .read-more-content {
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
  .blog-page .blog-content-trending .latest-post .read-more-content .icon-slide {
    display: flex;
    height: 3px;
    width: 47px;
    border-radius: 12px;
  }
  .blog-page .blog-content-trending .latest-post .read-more-content .article-content-title {
    color: #7c6f5b;
  }
  .blog-page .blog-content-trending .latest-post .read-more-content:not(:first-child) .article-content-title {
    display: none;
  }
  .blog-page .blog-content-trending .latest-post .content-text .icon-slide {
    background-color: rgba(45, 54, 66, 0.0784313725);
  }
  .blog-page .blog-content-trending .latest-post .content-text.active .icon-slide {
    background-color: #2d3642;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile {
    margin-top: 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile p {
    margin: 0;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile .cluster-name-post {
    display: flex;
    align-items: center;
    color: rgba(45, 54, 66, 0.5215686275);
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.1px;
    text-align: left;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile .cluster-name-post .left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile .cluster-name-post .left .article-content-title-mobile {
    font-weight: 700;
    color: #2d3642;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile .article-content {
    text-decoration: none;
    overflow: hidden; /* Ẩn nội dung vượt quá */
    text-overflow: ellipsis; /* Thêm dấu "..." khi bị cắt */
    display: -webkit-box; /* Sử dụng box layout */
    -webkit-line-clamp: 2; /* Giới hạn số dòng hiển thị */
    -webkit-box-orient: vertical;
    height: 54px;
    font-size: 20px;
    font-weight: 700;
    line-height: 27.28px;
    text-align: left;
    color: #2d3642;
  }
  .blog-page .blog-content-trending .latest-post .content-text-mobile.active {
    display: flex;
  }
  .blog-page .blog-content-trending .post-thumbnail {
    height: fit-content;
    max-width: 100%;
    padding-bottom: 8px;
  }
  .blog-page .blog-content-trending .post-thumbnail .btn-action {
    display: flex;
  }
  .blog-page .blog-content-trending .post-thumbnail .swiper-pagination {
    display: flex;
    margin: 0;
    gap: 4px;
    bottom: 0;
  }
  .blog-page .blog-content-trending .post-thumbnail .swiper-pagination .swiper-pagination-bullet {
    height: 3px;
    width: 47px;
    background-color: rgba(45, 54, 66, 0.0784313725);
    opacity: unset;
    border-radius: 12px;
    margin: 0;
  }
  .blog-page .blog-content-trending .post-thumbnail .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2d3642;
    opacity: unset;
    border-radius: 12px;
    margin: 0;
  }
  .blog-page .cluster-blogs {
    background-color: transparent;
    padding-top: 0;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts {
    display: grid;
    grid-template-columns: auto;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all {
    display: unset;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-thumbnail {
    aspect-ratio: 1;
    width: auto;
    height: auto;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .post-author {
    margin: 12px 0 0 8px;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content {
    padding: 8px;
    width: auto;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content h4 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    height: 48px;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom {
    margin-top: 12px;
  }
  .blog-page .cluster-blogs .blogs .row .all-posts .layout-read-more-all .read-more-all .article-content .article-bottom span {
    outline: 1px solid rgba(45, 54, 66, 0.1215686275);
    font-size: 14px;
    padding: 12px 24px;
  }
  .blog-page .cluster-blogs .blogs .row .pagination a:first-child {
    margin-right: 12px;
  }
  .blog-page .cluster-blogs .blogs .row .pagination a:last-child {
    margin-left: 12px;
  }
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}

/*!
Theme Name: Passemall
Theme URI:
Author: ABC E-learning
Author URI:
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: passemall
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

passemall is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/* @import url("custom.css"); */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  /* font-family: sans-serif; */
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
  font-family: Nunito !important;
}

@font-face {
  font-family: "Nunito";
  src: url("https://cdn.worksheetzone.org/fonts/Nunito-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
/* ul,
ol {
    margin: 0 0 1.5em 3em;
} */
ul {
  list-style: disc;
}

/* Make sure embeds and iframes fit their containers. */
img {
  height: auto;
  max-width: 100%;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  /* display: block;
  width: 100%; */
}

.site {
  background: #f9f7ee;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
* {
  font-family: Nunito !important;
}

/* Posts and pages
--------------------------------------------- */
.post,
.page {
  /* margin: 0 0 1.5em; */
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.v4-container-component {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .v4-container-component {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1160px) {
  .v4-container-component.v4-container-maxWidth {
    max-width: 1160px;
  }
}
.overflow-auto {
  overflow-y: scroll;
}

/* width */
.overflow-auto::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.overflow-auto::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
.overflow-auto::-webkit-scrollbar-thumb {
  background: rgba(33, 33, 33, 0.52);
  border-radius: 10px;
}

/* Handle on hover */
.overflow-auto::-webkit-scrollbar-thumb:hover {
  background: rgba(33, 33, 33, 0.32);
}

.new-archive {
  background-color: #fff9e7;
}
.new-archive header {
  padding-top: 16px;
  background-color: #fffdf4;
}
.new-archive header .archive-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.new-archive header .archive-content .saboxplugin-wrap {
  border: none;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-gravatar {
  width: 200px;
  height: 200px;
  max-width: 200px;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-gravatar img {
  width: 100%;
  height: 100%;
  min-width: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-authorname {
  margin: 0;
  margin-bottom: 16px;
  line-height: 1.5em;
  font-size: 32px;
  font-weight: 700;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-authorname a {
  color: #404040 !important;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-desc span {
  color: #404040;
  font-size: 16px !important;
  line-height: 1.5em !important;
}
.new-archive header .archive-content .saboxplugin-wrap .saboxplugin-tab .saboxplugin-socials {
  background: none;
}
.new-archive header .archive-content > img {
  width: 200px;
  height: 200px;
  max-width: 200px;
  border-radius: 8px;
  background-color: #fff;
  border-radius: 16px;
}
.new-archive header .archive-content .author-info {
  margin-left: 32px;
}
.new-archive header .archive-content .author-info > h1 {
  display: none;
  margin: 0;
  margin-bottom: 16px;
  line-height: 1.5em;
  font-size: 32px;
}
.new-archive header .archive-content .author-info .last-updated {
  display: none;
}
.new-archive header .archive-description-mobile {
  display: none;
}
.new-archive .posts-by-author > p {
  font-size: 24px;
  line-height: 36px;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 24px;
  column-gap: 40px;
  row-gap: 47px;
  justify-content: center;
  align-items: center;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all {
  text-decoration: none;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article {
  border-radius: 16px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article:hover {
  transform: translateY(-3px);
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-thumbnail {
  width: 360px;
  height: 360px;
  background: rgba(33, 33, 33, 0.2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .post-author {
  display: flex;
  align-items: center;
  margin: 24px 0 0 16px;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .post-author img {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin-right: 8px;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .post-author span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #2d3642;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content {
  padding: 8px 16px 16px 16px;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.82px;
  text-align: left;
  color: #2d3642;
  overflow: hidden;
  /* Ẩn nội dung vượt quá */
  text-overflow: ellipsis;
  /* Thêm dấu "..." khi bị cắt */
  display: -webkit-box;
  /* Sử dụng box layout */
  -webkit-line-clamp: 2;
  /* Giới hạn số dòng hiển thị */
  -webkit-box-orient: vertical;
  /* Hướng bố cục theo chiều dọc */
  width: 100%;
  /* Đặt chiều rộng cố định */
  height: 44px;
  margin: 0;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom span {
  color: #2d3642;
  outline: 1px solid rgba(45, 54, 66, 0.6509803922);
  padding: 12px 28px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom span:hover {
  background-color: #2d3642;
  outline: 1px solid rgba(255, 255, 255, 0.2392156863);
  color: #fff;
}
.new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(45, 54, 66, 0.5215686275);
  margin: 0;
}
.new-archive .posts-by-author .list-posts-by-author .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-bottom: 120px;
}
.new-archive .posts-by-author .list-posts-by-author .pagination .btn-next-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-archive .posts-by-author .list-posts-by-author .pagination a {
  text-decoration: none;
  font-size: 16px;
  color: #212121;
  font-weight: 500;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  line-height: 40px;
  text-align: center;
}
.new-archive .posts-by-author .list-posts-by-author .pagination a.first-page {
  pointer-events: none;
}
.new-archive .posts-by-author .list-posts-by-author .pagination a.active {
  background: rgba(33, 33, 33, 0.078);
}
.new-archive .posts-by-author .list-posts-by-author .pagination a:not(:first-child):not(:last-child) {
  margin: 0 4px;
}
.new-archive .posts-by-author .list-posts-by-author .pagination a:first-child {
  color: rgba(33, 33, 33, 0.522);
  background: #fff;
  border: 1px solid rgba(124, 111, 91, 0.239);
  margin-right: 28px;
}
.new-archive .posts-by-author .list-posts-by-author .pagination a:last-child {
  margin-left: 28px;
  color: rgba(33, 33, 33, 0.522);
  background: #fff;
  border: 1px solid rgba(124, 111, 91, 0.239);
}
@media screen and (max-width: 768px) {
  .new-archive header .archive-content > img {
    width: 80px;
    height: 80px;
    border-radius: 999px;
  }
  .new-archive header .archive-content .author-info {
    margin-left: 32px;
  }
  .new-archive header .archive-content .author-info > h1 {
    margin: 0;
    margin-bottom: 16px;
    line-height: 1.5em;
    font-size: 24px;
  }
  .new-archive .posts-by-author > p {
    font-size: 18px;
    line-height: 24px;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts {
    display: grid;
    grid-template-columns: auto;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-thumbnail {
    aspect-ratio: 1;
    width: auto;
    height: auto;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .post-author {
    margin: 12px 0 0 8px;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content {
    padding: 8px;
    width: auto;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content h4 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    height: 48px;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom {
    margin-top: 12px;
  }
  .new-archive .posts-by-author .list-posts-by-author .all-posts .read-more-all .article-content .article-bottom span {
    outline: 1px solid rgba(45, 54, 66, 0.1215686275);
    font-size: 14px;
    padding: 12px 24px;
  }
}

#colophon-mobile {
  display: block;
}
@media screen and (min-width: 600px) {
  #colophon-mobile {
    display: none;
  }
}

#colophon {
  display: none;
}
@media screen and (min-width: 600px) {
  #colophon {
    display: block;
  }
}

.v4-footer-landing-0 .v4-svg-desktop {
  display: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 {
  width: 100%;
  height: 100%;
  display: flex;
  background: #2d3642;
  padding-top: 16px;
  padding-bottom: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-container-maxWidth-footer {
  max-width: 1206px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app p {
  margin: 0;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .email-footer,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .address-footer {
  display: flex;
  flex-direction: column;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .email-footer .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .address-footer .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #bfbfbf;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .email-footer .content,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .info-app .address-footer .content {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 .v4-contact-social-desktop {
  display: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 .logo-footer-v4 {
  display: flex;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 {
  display: flex;
  flex-direction: column;
  color: #fff;
  padding-top: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 > div {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 28px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .title {
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field {
  margin: 4px 0;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field input {
  color: #fff;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  background-color: transparent;
  width: -webkit-fill-available;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field input::placeholder {
  color: #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field input:focus {
  border: 1px solid #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field p {
  color: #880000;
  margin: 0;
  font-size: 14px;
  text-align: left;
  padding-left: 4px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-footer-btn-contact-us {
  box-sizing: border-box;
  padding: 12px 27px;
  background-color: #fff;
  color: #212121;
  width: fit-content;
  align-self: flex-end;
  cursor: pointer;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  display: flex;
  line-height: 20px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .resource,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .company,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .legal {
  min-width: 164px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .resource *,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .company *,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .legal * {
  color: #bfbfbf;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .resource .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .company .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .company-legal .legal .label {
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
  box-sizing: border-box;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .label-input {
  text-align: start;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .label {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .content .label-send-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #bfbfbf;
  text-align: start;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .support-mail,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #ffffff;
  text-decoration: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .support-mail svg,
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .support .location svg {
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 {
  padding: 24px 40px;
  background: #443c2f;
  display: flex;
  margin: 0 -16px;
  margin-top: 24px;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-121 {
  padding-top: 32px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-121 a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-121 a:not(:first-child) {
  margin-left: 32px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-122 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #ffffff;
  text-align: center;
  padding-top: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .logo-icon {
  display: flex;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .logo-icon img {
  height: 100%;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .logo-icon .sub-content {
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: #ffffff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left p {
  margin: 0;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .email-footer,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .address-footer {
  display: flex;
  flex-direction: column;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .email-footer .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .address-footer .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #bfbfbf;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .email-footer .content,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .address-footer .content {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .footer-left .dmca-protected {
  display: flex;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .resource,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .company,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .legal,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .resource *,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .company *,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .legal *,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support * {
  color: #bfbfbf;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .resource .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .company .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .legal .label,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .label {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .resource .content,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .company .content,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .legal .content,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .resource .content a:hover,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .company .content a:hover,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .legal .content a:hover,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .content a:hover {
  text-decoration: underline;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support {
  max-width: 320px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .support-mail,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .support-mail svg,
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .location svg {
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .main-content .support .label-send-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #bfbfbf;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7215686275);
  width: -webkit-fill-available;
  padding: 3px 3px 3px 11px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message input {
  border: none;
  box-sizing: border-box;
  outline: none;
  background-color: transparent;
  width: 100%;
  line-height: 22px;
  color: #fff !important;
  font-size: 14px;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message input::placeholder {
  color: rgba(255, 255, 255, 0.7215686275);
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(255, 255, 255, 0.7215686275);
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(255, 255, 255, 0.7215686275);
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message:focus-within {
  border: 1px solid #fff;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message p {
  color: #880000;
  font-size: 14px;
  text-align: left;
  padding-left: 4px;
  margin: 0;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .send-message .button-send {
  height: 40px;
  cursor: pointer;
  width: fit-content;
  border-radius: 6px;
  padding: 8 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #2d3642;
  border: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .social-media-container {
  margin-top: 40px;
  background: #443c2f;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .social-media-container .social-media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  box-sizing: border-box;
}
.v4-footer-landing-0 .v4-footer-landing-container-0 .social-media-container .social-media .label {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .v4-footer-landing-0 .v4-svg-desktop {
    display: block;
  }
  .v4-footer-landing-0 .v4-svg-mobile {
    display: none;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 {
    display: flex;
    justify-content: space-between;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 > *:not(:first-child) {
    margin-top: 32px;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-111 .v4-contact-social-desktop {
    display: block;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 {
    padding-top: 0;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 > div {
    font-size: 16px;
    text-align: left;
    line-height: 24px;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-input-field {
    margin: 8px 0;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-11 .v4-footer-landing-container-112 .v4-footer-btn-contact-us {
    margin-top: 16px;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 {
    flex-direction: row;
    margin-top: 24px;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-contact-social-mobile {
    display: none;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-121 {
    padding-top: 0;
  }
  .v4-footer-landing-0 .v4-footer-landing-container-0 .v4-footer-landing-container-12 .v4-footer-landing-container-122 {
    padding-top: 0;
  }
}

.contact-social-media-component {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-social-media-component svg {
  display: flex;
}

.v4-platform-logo-contact-0 {
  display: flex;
}
.v4-platform-logo-contact-0 div {
  position: relative;
}
.v4-platform-logo-contact-0 div a {
  width: 24px;
  height: 24px;
}
.v4-platform-logo-contact-0 div:not(:first-child) {
  margin-left: 16px;
}

/* ------------------------------------------------------------- */
.cookie {
  background-color: #212a35;
  padding-top: 16px;
  padding-bottom: 28px;
}

.cookie * {
  color: #fff;
}

.cookie .cookie-container #learn-more {
  background-color: #3b82f6;
  border: none;
  border-radius: 8px;
  line-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.cookie .label {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
}

.cookie .cookie-container #accept {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
}
.cookie .cookie-container #accept p {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: #2d3642;
  margin: 0;
  line-height: 44px;
}

.cookie .cookie-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie .content-cookie {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5215686275);
}

.cookie .label {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
  font-family: Nunito;
}

@media screen and (min-width: 769px) {
  .cookie {
    padding-top: 32px;
    padding-bottom: 34px;
  }
  .cookie .cookie-container {
    display: flex;
  }
  .cookie .label {
    font-size: 24px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    font-family: Nunito;
  }
  .cookie .content-cookie {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5215686275);
  }
  .cookie .cookie-container #learn-more {
    cursor: pointer;
    line-height: 44px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
  }
  .cookie .cookie-container #accept {
    cursor: pointer;
    margin-top: 0;
  }
  .cookie .cookie-container #accept p {
    line-height: 44px;
  }
}
article {
  position: relative;
  background-color: #fff9e7;
}
article > header {
  background: #fffdf4;
  border-bottom: 1px solid rgba(33, 33, 33, 0.0784313725);
  padding-top: 16px;
  padding: 40px 0;
}
article > header .header-content nav > span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  padding: 0;
}
article > header .header-content nav > span > span:not(:first-child) {
  padding-left: 8px;
}
article > header .header-content nav > span > span a {
  color: #ff9500;
  text-decoration: none;
}
article > header .header-content nav > span > span.active {
  color: rgba(33, 33, 33, 0.5215686275);
}
article > header .header-content h1 {
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 600;
}
article > header .header-content .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
article > header .current-post-author {
  display: flex;
  align-items: center;
  text-decoration: none;
}
article > header .current-post-author img {
  width: 64px;
  height: 64px;
  border-radius: 64px;
}
article > header .current-post-author > div {
  padding-left: 16px;
}
article > header .current-post-author > div span {
  font-size: 18px;
  line-height: 1.5em;
  color: #212121;
  font-weight: 500;
}
article > header .current-post-author > div p {
  font-size: 16px;
  line-height: 1.5em;
  color: rgba(33, 33, 33, 0.6);
  margin: 0;
}
article .entry-content .row {
  display: flex;
  justify-content: space-between;
}
article .entry-content .content-post {
  max-width: 800px;
  width: 100%;
  padding-top: 28px;
  overflow: hidden;
}
article .entry-content .content-post .heateor_sss_sharing_ul a {
  flex: none;
  width: 35px !important;
  padding: 0 12px;
  margin-bottom: 16px;
}
article .entry-content .content-post.upgrade-font-size h2 {
  font-size: 24pt;
}
article .entry-content .content-post.upgrade-font-size h3 {
  font-size: 18pt;
}
article .entry-content .content-post.upgrade-font-size h4 {
  font-size: 14pt;
}
article .entry-content .content-post.upgrade-font-size h5 {
  font-size: 14pt;
}
article .entry-content .content-post.upgrade-font-size p {
  font-size: 14pt;
}
article .entry-content .content-post.upgrade-font-size ul,
article .entry-content .content-post.upgrade-font-size ol {
  font-size: 14pt;
}
article .entry-content .banner {
  width: 356px;
  padding-left: 32px;
  flex: none;
}
article .entry-content .abc-single-post {
  width: inherit;
  margin-top: 48px;
}
article .entry-content .abc-single-post.sticky {
  position: fixed;
  z-index: 3;
}
article .entry-content .abc-single-post .table-of-content {
  border: 1px solid rgba(33, 33, 33, 0.2392156863);
  border-radius: 8px;
  background-color: #fff;
}
article .entry-content .abc-single-post .table-of-content > span {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.5em;
  color: #212121;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
}
article .entry-content .abc-single-post .table-of-content .list-title {
  transition: all 0.2s;
  height: 0;
  background-color: rgba(33, 33, 33, 0.04);
  overflow: hidden;
}
article .entry-content .abc-single-post .table-of-content .list-title.expand {
  height: fit-content;
  max-height: 80vh;
  overflow: auto;
}
article .entry-content .abc-single-post .table-of-content .list-title.expand::-webkit-scrollbar {
  width: 5px;
}
article .entry-content .abc-single-post .table-of-content .list-title.expand::-webkit-scrollbar-track {
  border-radius: 10px;
}
article .entry-content .abc-single-post .table-of-content .list-title.expand::-webkit-scrollbar-thumb {
  background: rgba(33, 33, 33, 0.32);
  border-radius: 10px;
}
article .entry-content .abc-single-post .table-of-content .list-title.expand::-webkit-scrollbar-thumb:hover {
  background: rgba(33, 33, 33, 0.36);
}
article .entry-content .abc-single-post .table-of-content .list-title a {
  line-height: 1.5em;
  text-decoration: none;
  display: block;
  color: #212121;
  transition: all 0.2s;
}
article .entry-content .abc-single-post .table-of-content .list-title a:hover {
  background: rgba(33, 33, 33, 0.12);
}
article .entry-content .abc-single-post .table-of-content .list-title a.h1 {
  font-size: 16px;
  padding-top: 10px;
}
article .entry-content .abc-single-post .table-of-content .list-title a.h2 {
  font-size: 15px;
  padding-left: 12px;
  padding-top: 8px;
}
article .entry-content .abc-single-post .table-of-content .list-title a.h3 {
  font-size: 14px;
  padding-left: 24px;
  padding-top: 4px;
}
article .entry-content .abc-single-post .table-of-content .list-title a.h4 {
  font-size: 13px;
  padding-left: 32px;
}
article .entry-content .abc-single-post .table-of-content .list-title a.h5 {
  font-size: 13px;
  padding-left: 40px;
}
article .entry-content .abc-single-post .table-of-content .list-title a.h6 {
  font-size: 13px;
  padding-left: 48px;
}
article .entry-content .abc-single-post .banner-practice-now {
  border-radius: 8px 50px 8px 8px;
  box-shadow: 0px 2px 8px 0px rgba(33, 33, 33, 0.1607843137);
  border: 1px solid rgba(33, 33, 33, 0.2392156863);
  margin-top: 16px;
  background-color: #fff;
}
article .entry-content .abc-single-post .banner-practice-now p {
  padding: 16px;
  text-shadow: 0px 4px 8px rgba(86, 85, 85, 0.2392156863);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0;
}
article .entry-content .abc-single-post .banner-practice-now p span {
  color: #ff9d12;
}
article .entry-content .abc-single-post .banner-practice-now > span {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.5em;
  font-style: italic;
  padding: 4px 16px;
}
article .entry-content .abc-single-post .banner-practice-now .practice-now-btn {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  background: #ff9500;
  border-radius: 8px;
  text-align: center;
  margin: 16px 24px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
article hr {
  color: rgba(33, 33, 33, 0.2392156863);
}
article .author-detailed {
  margin-top: 48px;
}
article .author-detailed > p {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 24px 0;
}
article .author-detailed .details {
  padding: 16px;
  background-color: rgba(33, 33, 33, 0.0392156863);
  border-radius: 8px;
  display: flex;
  text-decoration: none;
  color: #212121;
}
article .author-detailed .details img {
  border-radius: 4px;
  width: 100px;
  height: 100px;
  margin-right: 24px;
}
article .author-detailed .details > div span {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
article .author-detailed .details > div p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
article .recent-posts {
  margin-top: 48px;
  padding-bottom: 120px;
}
article .recent-posts .related-posts-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 24px 0;
}
article .recent-posts > p {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 24px 0;
}
article .recent-posts .grid-related-post {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
article .recent-posts .grid-related-post a {
  text-decoration: none;
  color: #212121;
  transition: transform 0.3s ease;
}
article .recent-posts .grid-related-post a:hover {
  transform: translateY(-3px);
}
article .recent-posts .grid-related-post a .article {
  border-radius: 16px;
  background-color: #fff;
}
article .recent-posts .grid-related-post a .article-thumbnail {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(33, 33, 33, 0.2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0px 0px 4px 0px rgba(33, 33, 33, 0.1607843137);
  overflow: hidden;
}
article .recent-posts .grid-related-post a .article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
article .recent-posts .grid-related-post a .article-content {
  padding: 8px;
}
article .recent-posts .grid-related-post a .article-content h3 {
  margin: 8px 0 12px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 54px;
}
article .recent-posts .grid-related-post a .article-content .article-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article .recent-posts .grid-related-post a .article-content .article-bottom > div {
  color: #2d3642;
  outline: 1px solid rgba(45, 54, 66, 0.6509803922);
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
article .recent-posts .grid-related-post a .article-content .article-bottom > div:hover {
  background-color: #2d3642;
  outline: 1px solid rgba(255, 255, 255, 0.2392156863);
  color: #fff;
}
article .recent-posts .grid-related-post a .article-content .article-bottom > p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(33, 33, 33, 0.5215686275);
  margin: 0;
}
@media screen and (max-width: 1240px) {
  article .entry-content .banner,
  article .entry-content .abc-single-post {
    width: 320px;
  }
  article .recent-posts .grid-related-post {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 960px) {
  article .entry-content .banner,
  article .entry-content .abc-single-post {
    width: 320px;
  }
  article .recent-posts .grid-related-post {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 860px) {
  article .entry-content .banner {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  article .recent-posts .grid-related-post {
    grid-template-columns: 1fr;
  }
}