::selection {
  background: #66bbff54;
  color: initial;
}

body {
  color: #222B38;
  line-height: 30px;
}

.bg-llight {
  background-color: #fff;
  /* background-color: #f5f8ff; */
}

.mobile-navbar .mobile-navbar-icon {
  color: #3045FF;
}

.mobile-navbar .mobile-navbar-icon span {
  background-color: #000;
}

/* main */
main {
  padding-top: 30px;
  padding-bottom: 30px;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* page header */
.page-header {
  margin-bottom: 60px;
}

.page-header .heading {
  font-size: 2rem;
}

.page-header .description {
  color: #34405dab;
  /* color: rgb(129, 143, 170); */
}

/* Post */

.posts {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.posts .post {
  box-shadow: 0 3px 6px #97979745;
  padding: 0;
  /* This line of code sets the flex property of the element. It is a shorthand for flex-grow, flex-shrink, and flex-basis combined. 
    The flex-grow property is set to 1, allowing the element to grow and fill the available space. 
    The flex-shrink is set to 0, preventing the element from shrinking. 
    The flex-basis property is set to 50% - 15px, specifying the initial size of the element before it is adjusted according to the flex-grow and flex-shrink properties. */
  flex: 1 0 calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
  margin: 0;
  box-sizing: border-box;
}

.post .post-header {
  text-align: left;
}

.post .post-header .post-image {
  width: 100%;
  background-color: #000000;
}

.post .post-header .post-image img {
  width: 100%;
  max-height: 800px;
  min-height: 246px;
  object-fit: contain;
}

.post .post-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.post-summary {
  line-height: 30px;
}

.post-summary p {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5rem;
}

.post .post-header {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post .post-header .post-meta {
  margin-top: 5px;
}

.post-meta-lastmod {
  display: none;
}

.post .post-header .post-link {
  line-height: 1.4rem;
  transform: unset;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.post .post-header .post-link:hover {
  color: #3045FF;
}

.post .post-content {
  color: #222B38;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 30px;
}

.post .post-content h1 {
  font-size: 1.25rem;
  line-height: 1.2rem;
  padding-bottom: 12px;
  border-bottom-color: #E9EFFF;
}

.post .post-content h2 {
  padding-bottom: 5px;
  border-bottom-color: #E9EFFF;
}

.post .post-content a:hover {
  border-bottom-color: transparent;
}

.post .post-copyright .copyright-item a {
  color: #3045FF;
}

.post .post-copyright .copyright-item a:hover {
  border-bottom-color: #3045FF;
}

.post .post-content a,
.post .post-header .post-meta .post-meta-author a,
.post .post-content .read-more .read-more-link {
  color: #3045FF;
}

.post .post-content .read-more .read-more-link {
  font-size: 17px;
}

.post .post-content .read-more .read-more-link:hover {
  color: #3045FF;
  border-bottom: 1px solid #3045FF;
}

.post .post-header .post-title {
  line-height: 1.8rem; 
  font-size: 1.5rem;
  margin-top: 15px;
}

.post .post-content h2 {
  font-size: 18px;
}

.post .post-header .post-meta .post-meta-time {
  margin-left: 0;
  color: rgb(129, 143, 170);
  font-size: 16px;
}

/* header */
.header {
  background: #fff;
  box-shadow: 0px 5px 10px rgba(100, 121, 247, 0.1);
  max-width: unset;
  margin: unset;
  display: block;
  margin-bottom: 15px;
}

.header .wrapper {
  display: flex;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.header .logo-wrapper {
  display: flex;
  align-items: center;
  padding-bottom: 14px;
}

.header .site-navbar {
  margin-left: unset;
}

.header .site-navbar {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  /* margin-left: 66px; */
}

.header .site-navbar .menu {
  padding-left: 66px;
}

.header .site-navbar .menu .menu-item {
  margin: 0;
}

.header .site-navbar .menu .menu-item:hover {
  border-bottom: unset;
}

.header .site-navbar .menu .menu-item:hover .menu-item-link {
  color: #3045FF;
}

.header .site-navbar .menu .menu-item .menu-item-link {
  font-size: 16px;
  color: #1B1B1B;
  line-height: 2.2;
  margin-right: 49px;
  transition: color .15s;
}

.header .site-navbar .menu .menu-item.sign-up-for-free .menu-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  background: #3045FF;
  border-radius: 5px;
  color: #fff !important;
  margin: 0;
  text-transform: uppercase;
}

.menu-item-lang i {
  padding-top: 5px;
  padding-right: 5px;
}

.header .menu-parent.menu-item-lang::after {
  padding-top: 4px;
  padding-left: 3px;
}

.header .site-navbar .menu .menu-item .submenu .submenu-item a {
  font-size: 16px;
}

.header .site-navbar .menu .menu-item .submenu .submenu-item:hover {
  background-color: transparent;
}

.header .site-navbar .menu .menu-item .submenu .submenu-item:hover a {
  color: initial
}

.header .site-navbar .menu .menu-item .submenu .submenu-item:hover a:hover {
  color: #3045FF;
}

.pagination {
  margin-top: 60px;
}
