/*! Copyright © 2026 Ask Media Group */
.content-card {
  position: relative;
  box-sizing: border-box;
}
.content-card a:-webkit-any-link {
  text-decoration: none;
}
.content-card .category {
  text-transform: uppercase;
  color: var(--font-base-color);
}
.content-card .category-tag {
  border-radius: 3px;
  color: #FFF;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 10px;
  text-transform: uppercase;
}
.content-card .title {
  color: #02020b;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.content-card .description {
  color: #555555;
  display: block;
  unicode-bidi: isolate;
}
.content-card .imageContainerStyle {
  overflow: "hidden";
}
.content-card img {
  height: 168px;
  object-fit: cover;
  width: 100%;
}
.content-card.featured {
  min-height: 200px;
  display: flex;
  align-items: stretch;
}
.content-card.featured .category {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  margin: 0;
}
.content-card.featured .title {
  font-size: 24px;
  line-height: 30px;
  margin-top: 0.2em;
  margin-bottom: 0.5rem;
  padding-top: 0;
}
.content-card.featured .text-content {
  position: absolute;
  bottom: 0;
  padding: 15px 15px 0;
  width: 240px;
  height: 100%;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}
.content-card.featured .text-content .description {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  color: #555;
  font-weight: 400;
  padding: 0;
}
@media (max-width: 768px) {
  .content-card.featured.featured .text-content {
    padding: 15px 15px 45px 15px;
    position: relative;
    width: 100%;
  }
}
.content-card.card {
  width: 32%;
  margin-top: 1.25%;
  margin-bottom: 1.25%;
}
.content-card.card a {
  text-decoration: none;
}
.content-card.card a .img {
  width: 100%;
  height: 165px;
}
.content-card.card a .category {
  margin: 0;
  line-height: 14px;
  padding: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
}
.content-card.card a .title {
  font-size: 18px;
  line-height: 21px;
  padding: 5px 0 15px;
}
.content-card.list {
  width: 100%;
  margin-top: 1%;
  margin-bottom: 1.5%;
}
.content-card.list a {
  text-decoration: none;
  display: flex;
}
.content-card.list .text-content {
  padding-left: 20px;
}
.content-card.list .img {
  width: 270px;
  height: 165px;
  min-width: 270px;
}
.content-card.list .category {
  margin: 0;
  line-height: 14px;
  padding: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
}
.content-card.list .title {
  font-size: 18px;
  line-height: 21px;
  padding: 5px 0 15px;
}
@media (max-width: 768px) {
  .content-card.list {
    margin-bottom: 3%;
  }
  .content-card.list .text-content {
    padding-left: 10px;
  }
  .content-card.list .category {
    display: none;
  }
  .content-card.list .title {
    padding-top: 0;
  }
  .content-card.list .description {
    display: none;
  }
  .content-card.list .img {
    height: 80px;
    width: 115px;
    min-width: 115px;
  }
}
.content-card.grid {
  width: 32%;
  margin-top: 1.25%;
  margin-bottom: 1.25%;
}
.content-card.grid a {
  text-decoration: none;
}
.content-card.grid .img {
  width: 100%;
  height: 165px;
}
.content-card.grid .category {
  margin: 0;
  line-height: 14px;
  padding: 10px 0 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--font-base-color);
}
.content-card.grid .title {
  font-size: 18px;
  line-height: 21px;
  padding: 5px 0 15px;
}
@media (max-width: 768px) {
  .content-card.grid {
    margin-bottom: 3%;
    width: 49%;
  }
  .content-card.grid .text-content {
    padding-left: 0;
  }
  .content-card.grid .description {
    display: none;
  }
  .content-card.grid .title {
    padding: 0;
  }
}
.content-card.img-list {
  display: flex;
  width: 100%;
  gap: 10px;
  text-decoration: none;
}
.content-card.img-list .index {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color);
  color: #FFFFFF;
}
.content-card.img-list .img {
  width: 75px;
  height: 75px;
}
.content-card.img-list .text-content .title {
  font-size: 14px;
  line-height: 20px;
  color: #02020b;
  text-transform: capitalize;
}
.content-card.img-list .meson-button.link-button {
  display: flex;
  width: 100%;
  gap: 10px;
  text-decoration: none;
  position: relative;
}
.content-card.simple-list .link-button:first-child {
  border-bottom: 1px solid #ddd;
}
.content-card.simple-list .img {
  height: 168px;
  object-fit: cover;
  width: 100%;
}
.content-card.simple-list:not(:last-child) a::after {
  content: "";
  display: block;
  width: 159px;
  height: 1px;
  margin: 10px auto 0;
  border-top: 1px solid #ddd;
}
.content-card.simple-list .title {
  margin-top: 10px;
  font-size: 16px;
  line-height: 19px;
  padding: 5px 0 15px;
}
@media (max-width: 768px) {
  .content-card.simple-list:not(:last-child) a::after {
    margin: 0 auto;
  }
  .content-card.simple-list .title {
    text-align: center;
  }
}

/* Default styles */
.main-article {
  margin-bottom: 20px;
}
.main-article a {
  border: 1px solid #ddd;
  position: relative;
  min-height: 200px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.main-article a img {
  width: 100%;
  height: auto;
  padding: 0;
  box-sizing: inherit;
  flex-shrink: 0;
  /* Prevent image from shrinking */
}
.main-article a .text-overlay {
  position: absolute;
  padding: 15px 15px 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  height: auto;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}
.main-article a .text-overlay .category {
  color: #982649;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  margin: 0;
}
.main-article a .text-overlay .title {
  color: #02020b;
  text-decoration: none;
  background-color: transparent;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 0.2em;
  margin-bottom: 0.5rem;
  padding-top: 0;
}
.main-article a .text-overlay .description {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  color: #555;
  font-weight: 400;
  padding: 0;
  display: block;
  unicode-bidi: isolate;
}

.latest-articles.type-grid {
  display: flex;
  justify-content: space-between !important;
  flex-wrap: wrap;
}
.latest-articles.type-list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.latest-articles.type-img-list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.latest-articles .ad-wrapper {
  width: 100%;
}
.more-articles-title {
  color: #02020b;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}
.more-articles-title p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .more-articles-title {
    font-size: 15px;
    line-height: 18px;
  }
  .more-articles-title p {
    margin: 20px 0 4px;
  }
}

.footer-item button {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
}

.dynamic-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.dynamic-social-links .headline {
  color: #A0A0B0;
  font-size: 1rem;
  font-family: Arial;
  line-height: 0.9375;
}
.dynamic-social-links .links-section {
  margin-top: 12px;
}
.dynamic-social-links .links-section svg {
  width: 16px;
  height: 16px;
}
.dynamic-social-links .links-section .social-link {
  display: inline-block;
  position: relative;
  height: 16px;
  padding: 8px;
  margin-right: 14px;
  border-radius: 4px;
  background: #F0F3F4;
  cursor: pointer;
}
.dynamic-social-links .links-section .social-link .custom-button {
  padding: 0px;
  border: 0px;
  height: 16px;
  cursor: pointer;
}
.dynamic-social-links .links-section .social-link .custom-button:last-child {
  margin-right: 0px;
}
.dynamic-social-links .links-section .social-link .label {
  display: none;
}
.dynamic-social-links .links-section .social-link:last-child {
  margin-right: 0px;
}
.dynamic-social-links .links-section .social-link:hover .label {
  background: #ffffff;
  box-shadow: 0 5px 25px 5px rgba(205, 210, 214, 0.5);
  border-radius: 3px;
  color: #262626;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  max-width: 300px;
  min-width: 130px;
  padding: 8px 2px 2px 2px;
  height: 28px;
  line-height: 1.5714;
  transition: all 0.3s ease;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: 105%;
  display: block;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  align-self: normal;
  align-items: center;
  flex-grow: initial;
  flex-basis: initial;
  justify-content: center;
  border-top: none;
  margin: 0;
  overflow: visible;
}
.footer.hidden {
  display: none;
}
.footer-body {
  display: initial;
  flex-flow: initial;
  justify-content: initial;
  align-items: initial;
  font-size: 0.75rem;
  margin: 0 auto 0 auto;
  width: auto;
}
.footer-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: auto;
  flex-grow: initial;
  padding: 0;
}
.footer-item {
  display: inline;
  color: #888;
  margin: 0;
  padding-left: 2px;
  white-space: nowrap;
}
.footer-item:before {
  content: "-";
  margin: 0 0.4em;
  position: relative;
}
.footer-item:first-child:before {
  display: none;
}
.footer-item-link {
  color: #888;
  text-decoration: none;
}
.footer-item-link:hover {
  text-decoration: underline;
}
.footer-item.copy-right-newline {
  width: 100%;
  text-align: center;
}
.footer-item.copy-right-newline:before {
  content: "";
}
.footer-logo-left {
  margin-bottom: 0px;
}
.footer-logo-top {
  margin-bottom: 5px;
}
.footer .horizontal-line {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  width: 100%;
}
.footer .footer-left-logo {
  padding-left: 0px;
}
.footer .footer-top-logo {
  margin-bottom: 10px;
}
.footer.footer-bottom-right {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.footer.underline .footer-item {
  text-decoration: underline;
}
.footer.underline .footer-item.copyright {
  text-decoration: none;
}
.footer.underline .footer-item.copyright .meson-text {
  font-weight: bold;
}
.footer .disclosure-container {
  color: #757575;
  position: relative;
}
.footer .disclosure-link {
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  margin-left: 5px;
}
.footer .disclosure-tooltip {
  position: absolute;
  bottom: 26px;
  right: 9px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  max-width: 300px;
  font-size: 12px;
  margin: 10px 0;
  line-height: 22px;
}
.footer .disclosure-tooltip p {
  margin: 0;
}
.footer .disclosure-close-button {
  position: absolute;
  top: 2px;
  right: 2px;
  background: none;
  border: none;
  color: #757575;
  font-size: 13px;
  cursor: pointer;
}
.footer .footer-additional-text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: #757575;
  margin-top: 5px;
}
@media only screen and (max-width: 720px) {
  .footer {
    flex-flow: column wrap;
    width: 100%;
  }
  .footer-list {
    justify-content: center;
  }
  .footer .footer-additional-text p {
    text-align: center;
  }
}

.trending-articles-wrapper .heading {
  line-height: 16px;
  color: #02020b;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  padding-top: 0;
  padding-bottom: 14px;
}
.trending-articles-wrapper .trending-articles {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.related-articles.type-grid {
  display: flex;
  flex-wrap: wrap;
}
.home .content .home-content .related-articles.type-grid {
  justify-content: space-between;
}
.related-articles.type-list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.related-articles .ad-wrapper {
  width: 100%;
}
.related-articles .content-card .title {
  font-size: 20px;
  font-weight: 500;
}
.related-articles .description {
  color: #8c8c8c;
  line-height: 24px;
}
.related-articles .img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .related-articles .content-card .title {
    font-size: 18px;
    margin-top: 10px;
    padding-bottom: 0;
    font-weight: 400;
  }
  .related-articles .content-card .text-content {
    padding-right: 10px;
  }
  .related-articles .content-card .img {
    height: auto;
    min-width: 120px;
  }
}

html {
  font-size: 16px;
}
body {
  margin: 0;
}
.home {
  font-size: 16px;
  font-family: Roboto, Arial, sans-serif;
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}
.home .header-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #DDDDDD;
  height: 60px;
  position: relative;
  z-index: 1000;
  background: #F6F6F6;
  box-sizing: border-box;
}
.home .header-wrapper .page-header .article-category-menu-ui {
  right: 55px;
}
.home .header-wrapper .page-header .article-category-menu-ui a:before {
  content: "•";
  margin: 0 10px;
  position: relative;
}
.home .header-wrapper .page-header .article-category-menu-ui a:first-child:before {
  display: none;
}
.home .header-wrapper .page-header.top-box {
  max-width: 100%;
  height: 100%;
}
.home .header-wrapper .page-header.hide-box .search-box-ui.rounded {
  width: 45px;
}
.home .header-wrapper .page-header.hide-box .search-box-ui.rounded .search-input {
  display: none;
}
.home .header-wrapper .page-header.show-box .search-input {
  width: 155px;
}
.home .header-wrapper .page-header.show-box .article-category-menu-ui {
  transition: margin 0.4s ease-out;
  right: 245px;
}
.home .header-wrapper .page-header .search-box-ui.rounded {
  width: 230px;
}
.home .header-wrapper .page-header .search-box-ui.rounded .search-button:hover {
  background-color: unset !important;
}
.home .header-wrapper .page-header .search-box-ui.rounded:hover {
  box-shadow: none;
  background-color: unset;
}
.home .header-wrapper .page-header.left-logo .logo {
  order: 0;
}
.home .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.home .content .top {
  display: flex;
  gap: 30px;
}
.home .content .top .main-article {
  margin-bottom: 0;
  border: 1px solid #DDDDDD;
  width: 725px;
  background-color: #FFFFFF;
}
.home .content .top .main-article .content-card {
  box-shadow: 0px 2px 2px 0px #00000017;
}
.home .content .top .main-article .content-card .title {
  color: #02020B;
  font-weight: 400;
}
.home .content .top .main-article .content-card:hover {
  box-shadow: 0px 4px 4px 0px #00000040;
}
.home .content .top .main-article .content-card:hover .title {
  font-weight: 500;
  text-decoration: underline;
  color: #4A90E2;
}
.home .content .top .trending-articles-wrapper {
  border: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 2px 0px #00000017;
  padding: 20px;
  width: 355px;
}
.home .content .top .trending-articles-wrapper .heading {
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 10px;
}
.home .content .top .trending-articles-wrapper .trending-articles {
  gap: unset;
}
.home .content .middle .related-articles {
  gap: 30px;
}
.home .content .middle .related-articles .content-card {
  box-shadow: 0px 2px 2px 0px #00000017;
}
.home .content .middle .related-articles .content-card .title {
  color: #02020b;
  font-weight: 400;
}
.home .content .middle .related-articles .content-card:hover {
  box-shadow: 0px 4px 4px 0px #00000040;
}
.home .content .middle .related-articles .content-card:hover .title {
  font-weight: 500;
  text-decoration: underline;
  color: #4A90E2;
}
.home .content .bottom {
  display: flex;
  gap: 20px;
}
.home .content .bottom .latest-articles.type-grid {
  row-gap: 20px;
  column-gap: 30px;
}
.home .content .bottom .latest-articles .content-card {
  box-shadow: 0px 2px 2px 0px #00000017;
}
.home .content .bottom .latest-articles .content-card .title {
  color: #02020B;
  font-weight: 400;
}
.home .content .bottom .latest-articles .content-card:hover {
  box-shadow: 0px 4px 4px 0px #00000040;
}
.home .content .bottom .latest-articles .content-card:hover .title {
  font-weight: 500;
  text-decoration: underline;
  color: #4A90E2;
}
.home .footer .horizontal-line {
  margin: 0;
  border: none;
}

