/*! Copyright © 2025 Ask Media Group */
.progress-bar {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: -6px;
  width: 1%;
  height: 3px;
  background-color: #ce0000;
  border-radius: 1px;
  transition-property: width, opacity;
  transition-timing-function: ease-out, linear;
  transition-duration: 2000ms, 500ms;
}
.progress-bar.completed {
  transition-duration: 50ms, 500ms;
  transition-delay: 0s, 50ms;
}
.progress-bar b,
.progress-bar i {
  position: absolute;
  top: 0;
  height: 3px;
  box-shadow: #777777 1px 0 6px 1px;
  border-radius: 100%;
}
.progress-bar b {
  clip: rect(-6px, 22px, 14px, 10px);
  opacity: 0.6;
  width: 20px;
  right: 0;
}
.progress-bar i {
  clip: rect(-6px, 90px, 14px, -6px);
  opacity: 0.6;
  width: 180px;
  right: -80px;
}

.circle-spinner {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}
.circle-spinner .spinner-circle {
  display: block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(128, 128, 128, 0.2);
  /* light grey */
  border-radius: 50%;
  border-top-color: rgba(128, 128, 128, 0.8);
  /* darker grey for spinning part */
  animation: spin 1s linear infinite;
}
/* Size variations */
.circle-spinner.small .spinner-circle {
  width: 18px;
  height: 18px;
  border-width: 2px;
}
.circle-spinner.large .spinner-circle {
  width: 60px;
  height: 60px;
  border-width: 6px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.adx-ads-right-dynamic {
  position: fixed;
  display: none;
}

.adx-ad {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (max-width: 895px) {
  .adx-ad {
    display: none;
    margin: 0;
  }
}

.article-title-container {
  width: 100%;
}
.article-title-container .article-title {
  font-style: normal;
  font-weight: 400;
  line-height: 2.625rem;
  color: #000000;
  margin: 10px 0;
}

.article-author-div {
  color: #1A69C7;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.article-author-div .pub-details-div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #A0A0B0;
}
.article-author-div .pub-details-div .article-author-info,
.article-author-div .pub-details-div .article-author-read-info {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0em;
  text-align: left;
}
.article-author-div .pub-details-div .image {
  position: relative;
  top: 1px;
  margin-right: 5px;
}
.article-author-div .article-author-content-div {
  display: flex;
  margin-bottom: 10px;
}
.article-author-div .article-author-info {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
}
.article-author-div .article-author-read-info {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: left;
  height: 32px;
  margin-left: 5px;
}
.article-author-div .horizontal-line {
  border-bottom: 1.5px solid #dddddd;
  margin-bottom: 10px;
  margin-left: 10px;
  flex: 1 0 20px;
}
.article-author-image-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #A0A0B0;
  font-size: 0.875rem;
  font-weight: 400;
}
.article-author-image-div .image-div {
  margin: 14px auto 16px auto;
}
.ai-disclosure-tooltip-portal {
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  font-size: 14px;
  line-height: 1.5;
  visibility: visible;
  opacity: 1;
}
.ai-disclosure-tooltip-portal::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ccc;
}
.ai-disclosure-tooltip-portal::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.ai-disclosure-tooltip-portal p {
  font-style: italic;
  margin: 0;
  color: #333;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ai-disclosure-tooltip-portal {
    max-width: 90vw;
    right: 10px;
    width: auto;
  }
  .ai-disclosure-tooltip-portal::before,
  .ai-disclosure-tooltip-portal::after {
    left: 30px;
  }
}
.ai-disclosure-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  color: #666;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.ai-disclosure-close-button:hover {
  color: #000;
  background-color: #f5f5f5;
}
.ai-disclosure-close-button:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.author-with-disclosure {
  cursor: pointer;
  text-decoration: underline;
  position: relative;
  color: inherit;
  transition: opacity 0.2s ease;
}
.author-with-disclosure:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.author-with-disclosure:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
  border-radius: 2px;
}

.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;
}

.magnite-ad {
  margin-top: 15px;
  margin-bottom: 30px;
}

.related-topics-results {
  background-color: #FFFFFF;
  max-width: 405px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.related-topics-results:is(.related-topics-results-dark) {
  background-color: #2A2A2A;
}
.related-topics-results .sub-header {
  color: #929292;
  font-size: 14px;
  line-height: 16px;
}
.related-topics-results .results {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow: scroll;
  height: 178px;
}
.related-topics-results .results .result {
  width: 161px;
  border: 1px solid #DDDDDD;
  border-radius: 6px;
  padding-bottom: 24px;
}
.related-topics-results .results .result:is(.result-dark) {
  border: 1px solid #656565;
}
.related-topics-results .results .result .result-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}
.related-topics-results .results .result .result-link .result-link-img {
  height: 100px;
  width: 161px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.related-topics-results .results .result .result-link .result-title {
  font-size: 16px;
  color: #000000;
  padding: 0 16px;
}
.related-topics-results .results .result .result-link .result-title:is(.result-title-dark) {
  color: #FFFFFF;
}

.dynamic-article {
  font-family: Roboto, Arial, sans-serif;
}
.dynamic-article .article-section .content-image {
  margin: 0 0 30px;
  color: #838383;
  font-size: 0.75rem;
  line-height: 1.1667;
}
.dynamic-article .article-section .content-image img {
  width: 100%;
  object-fit: cover;
  height: 430px;
}
.dynamic-article .article-section .content-image.after-read-more {
  display: none;
}
.dynamic-article .article-section .header-h2 {
  color: #02020B;
  font-size: 1.5rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 2;
  margin: 15px 0 10px;
}
.dynamic-article .article-section .header-h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}
.dynamic-article .article-section > .content {
  color: #02020B;
  font-size: 1.125rem;
  line-height: 1.7778;
  margin: 0;
  padding-bottom: 15px;
  word-break: break-word;
}
.dynamic-article .article-section > .content .list-item h2 {
  font-size: 1.125rem;
}
.dynamic-article .article-section > .content.after-read-more {
  display: none;
}
.dynamic-article .article-section > .content.ai-content-disclosure {
  background: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #d0d0d0;
  padding: 20px;
  line-height: 24px;
}
.dynamic-article .article-section ol,
.dynamic-article .article-section ul {
  padding-left: 1.7rem;
  margin: 0 0 15px;
}
.dynamic-article .ad-platform-ads {
  margin-bottom: 15px;
}
.dynamic-article .ai-content-disclosure {
  background: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #d0d0d0;
  padding: 20px;
  line-height: 1.5;
}
.dynamic-article li:not(:has(p)) {
  padding-bottom: 0px;
}
.dynamic-article .read-more {
  margin: 15px 0 10px;
  color: #02020B;
  font-size: 1rem;
  line-height: 1.7778;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
}
.dynamic-article .read-more.large {
  background: #4a90e2;
  border-radius: 13px;
  display: block;
  border: 1px solid #4a90e2;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 12px 15px;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  transition: background-color 0.7s;
}
@media (max-width: 719px) {
  .dynamic-article .article-section .content-image {
    margin: 0 0 10px;
  }
  .dynamic-article .article-section .content-image img {
    height: 218px;
  }
  .dynamic-article .article-section > .content {
    padding-bottom: 10px;
  }
  .dynamic-article .article-section .header-h2 {
    margin: 0 0 10px;
  }
}

.magnite-fixed-right {
  flex: none;
  position: fixed;
  top: 65px;
  right: 75px;
  height: 100%;
  width: 300px;
}
.magnite-fixed-right .magnite-ad {
  margin-bottom: 50px;
}

.dynamic-article {
  color: #02020b;
  font-family: Roboto, arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.dynamic-article .hide-contents {
  display: none;
}
.dynamic-article .sticky-bottom-ad {
  position: sticky;
  bottom: 5px;
  background-color: #ffffff;
  padding: 5px 0 0 0;
}

.article-category-ui {
  text-decoration: none;
  position: relative;
}
.article-category-ui img {
  height: 168px;
  object-fit: cover;
  width: 100%;
}
.article-category-ui h2 {
  color: #02020b;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 0 15px;
  margin: 0;
}

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

.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 .amg-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;
  }
}

html {
  font-size: 16px;
}
body {
  margin: 0;
}
.article-loading .page-header,
.article-loading .header-wrapper,
.article-loading .footer {
  opacity: 0;
}
.article-loading .content .article-title-container,
.article-loading .content .article-author-div,
.article-loading .content .breadcrumbs {
  opacity: 0;
}
.article-loading .content .dynamic-article .article-section .header-h2,
.article-loading .content .dynamic-article .article-section .content,
.article-loading .content .dynamic-article .read-more {
  opacity: 0;
}
.article-loading .content .article-content .left-pane .dynamic-social-links,
.article-loading .content .article-content .left-pane .more-articles-title,
.article-loading .content .article-content .left-pane .category-article-3-col,
.article-loading .content .article-content .right-pane {
  opacity: 0;
}
.article {
  font-size: 16px;
  font-family: Roboto, Arial, sans-serif;
  background-color: #FFFFFF;
}
.article .header-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #DDDDDD;
  box-shadow: 0 1px 3px #00000026;
  height: 56px;
  position: fixed;
  z-index: 1000;
  background: #FFFFFF;
  box-sizing: border-box;
}
.article .header-wrapper .page-header {
  justify-content: space-between;
  height: 100%;
  padding: 0;
}
.article .header-wrapper .page-header.top-box {
  width: 1140px;
  max-width: 100%;
  height: 100%;
}
.article .header-wrapper .page-header .search-box-ui.rounded {
  border-radius: 4px;
  width: 230px;
  margin-bottom: 0;
}
.article .header-wrapper .page-header .search-box-ui.rounded .search-button,
.article .header-wrapper .page-header .search-box-ui.rounded .search-input {
  border-color: #ced4da;
}
.article .header-wrapper .page-header .search-box-ui.rounded .search-button {
  border-radius: 0 4px 4px 0;
}
.article .header-wrapper .page-header .search-box-ui.rounded .search-input {
  border-radius: 4px 0 0 4px;
  height: 40px;
  box-sizing: border-box;
  width: 185px;
}
.article .header-wrapper .page-header .search-box-ui.rounded:hover {
  box-shadow: none;
}
.article .header-wrapper .page-header.left-logo .logo {
  order: 0;
}
.article .content {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 5px 0 5px;
  box-sizing: border-box;
}
.article .content .breadcrumbs {
  text-align: left;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin: 15px 0;
}
.article .content .breadcrumbs span {
  color: #5d5d5d;
}
.article .content .breadcrumbs a {
  color: #5d5d5d;
  text-decoration: none;
}
.article .content .article-content {
  display: flex;
}
.article .content .article-content .left-pane {
  width: 75%;
  padding-right: 30px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.article .content .article-content .left-pane > div,
.article .content .article-content .left-pane > article,
.article .content .article-content .left-pane > section {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.article .content .article-content .left-pane .platinum-article {
  flex-direction: column;
}
.article .content .article-content .left-pane .platinum-article .article-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  clear: both;
  margin-top: 0;
  margin-bottom: 6px;
}
.article .content .article-content .left-pane .platinum-article .article-author-div .article-author-info {
  color: #cf0000;
}
.article .content .article-content .left-pane .platinum-article .article-author-div .horizontal-line {
  display: none;
}
.article .content .article-content .left-pane .platinum-article .dynamic-social-links {
  margin: 0;
  position: relative;
}
.article .content .article-content .left-pane .platinum-article .dynamic-social-links .links-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -35px;
  top: 0;
}
.article .content .article-content .left-pane .platinum-article .dynamic-social-links .links-section .social-link {
  margin: 0;
  border: none;
  background: transparent;
}
@media only screen and (max-width: 1199px) {
  .article .content .article-content .left-pane .platinum-article .dynamic-social-links {
    display: none;
  }
}
.article .content .article-content .left-pane .platinum-article .dynamic-article {
  flex-direction: column;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .article-section .content-image {
  margin: 0;
  padding: 15px 0 20px 0;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .article-section .content-image img {
  height: auto;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .article-section .content {
  padding: 0;
  margin-bottom: 16px;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .article-section .content.ai-content-disclosure {
  padding: 20px;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .article-section .header-h2 {
  line-height: 32px;
  font-size: 24px;
  margin: 0;
  padding-top: 15px;
  font-family: 'Roboto', sans-serif;
}
.article .content .article-content .left-pane .platinum-article .dynamic-article .ad-platform-ads {
  margin-bottom: 0;
}
.article .content .article-content .left-pane .adx-ad {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.article .content .article-content .left-pane .more-articles-title {
  color: #02020b;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}
.article .content .article-content .left-pane .more-articles-title p {
  margin: 10 0px;
}
.article .content .article-content .left-pane .category-article-3-col {
  flex-wrap: wrap;
}
.article .content .article-content .left-pane .category-article-3-col .article-category-ui {
  width: 32%;
  margin-bottom: 25px;
}
.article .content .article-content .left-pane .category-article-3-col .article-category-ui img {
  height: 165px;
}
.article .content .article-content .left-pane .category-article-3-col .article-category-ui h4 {
  margin: 0;
  line-height: 14px;
  padding: 5px 0 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--font-base-color);
}
.article .content .article-content .left-pane .category-article-3-col .article-category-ui h2 {
  font-size: 16px;
  line-height: 19px;
  padding-top: 5px;
}
.article .content .article-content .right-pane {
  width: 25%;
}
.article .content .article-content .right-pane .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;
}
.article .content .article-content .right-pane .trending-articles-wrapper .trending-articles {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.article .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui {
  display: flex;
  width: 100%;
  gap: 10px;
}
.article .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui span {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color);
  color: #FFFFFF;
}
.article .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui img {
  width: 75px;
  height: 75px;
}
.article .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui h2 {
  font-size: 14px;
  line-height: 20px;
  color: #02020b;
  text-transform: capitalize;
  padding-top: 0;
}
.article .content .article-content .right-pane .adx-ad {
  margin-top: 0;
  margin-bottom: 15px;
}
.article .content .footer {
  height: 55px;
}
.article .content .footer .horizontal-line {
  margin: 0;
}
.article .content .footer .footer-item-link {
  font-size: 13px;
}
.article .content .footer .dynamic-social-links {
  margin-top: 0;
  align-items: flex-start;
}
.article .content .footer .dynamic-social-links .headline {
  font-size: 13px;
  color: #919191;
}
.article .content .footer .dynamic-social-links .links-section {
  margin-top: 5px;
}
.article .content .footer .dynamic-social-links .links-section a {
  background: transparent;
  border: 1px solid var(--brand-color);
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.article .content .footer .dynamic-social-links .links-section a svg {
  height: 12;
  width: auto;
}
.article.orgnav-light {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.article.orgnav-light .header-wrapper .page-header .article-category-menu-ui a {
  font-size: 14px;
  line-height: 16px;
}
.article.orgnav-light .content {
  flex: auto;
}
.article.orgnav-light .content .article-content .platinum-article .article-author-div .article-author-info {
  color: #F45B69;
}
.article.orgnav-light .content .article-content .platinum-article.swap-author .article-title-container {
  order: 1;
}
.article.orgnav-light .content .article-content .platinum-article.swap-author .article-author-div {
  order: 0;
}
.article.orgnav-light .content .article-content .platinum-article.swap-author .dynamic-article {
  order: 2;
}
.article.orgnav-light .content .article-content .more-articles-title {
  font-size: 18px;
  line-height: 21px;
}
.article.orgnav-light .content .article-content .more-articles-title p {
  margin: 0 0 10px;
}
.article.orgnav-light .content .article-content .more-articles-title p:before {
  width: 20px;
  border-top: 4px solid var(--border-top-color, #F45B69);
  content: "";
  display: block;
  margin-bottom: 5px;
}
.article.orgnav-light .content .article-content .category-article-3-col .article-category-ui {
  margin-bottom: 10px;
}
.article.orgnav-light .content .article-content .category-article-3-col .article-category-ui h2 {
  color: #02020B;
  font-size: 18px;
  line-height: 24px;
  padding-top: 10px;
}
.article.orgnav-light .content .article-content .right-pane {
  width: 25%;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .heading {
  line-height: 15px;
  color: #02020b;
  font-size: 13px;
  padding-bottom: 10px;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .trending-articles {
  gap: 0;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui {
  display: flex;
  width: 100%;
  border-top: 1px solid #DDDDDD;
  padding: 15px 0;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui span {
  display: none;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui img {
  width: 76px;
  height: 56px;
}
.article.orgnav-light .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui h2 {
  font-size: 16px;
  padding: 0;
}
.article.orgnav-light .footer .horizontal-line {
  margin-bottom: 10px;
}
.article.orgnav-light .footer .logo {
  padding-left: 10px;
}
.article.orgnav-dark-black {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #2A2A2A;
}
.article.orgnav-dark-black .header-wrapper {
  background-color: #2A2A2A;
  border-bottom: 1px solid #656565;
}
.article.orgnav-dark-black .header-wrapper .page-header .search-box-ui.rounded .search-button {
  background-color: #2A2A2A !important;
}
.article.orgnav-dark-black .header-wrapper .page-header .article-category-menu-ui a {
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}
.article.orgnav-dark-black .content {
  flex: auto;
}
.article.orgnav-dark-black .content .article-content .platinum-article .article-author-div .article-author-info {
  color: #F45B69;
}
.article.orgnav-dark-black .content .article-content .platinum-article.swap-author .article-title-container {
  order: 1;
}
.article.orgnav-dark-black .content .article-content .platinum-article.swap-author .article-author-div {
  order: 0;
}
.article.orgnav-dark-black .content .article-content .platinum-article.swap-author .dynamic-article {
  order: 2;
}
.article.orgnav-dark-black .content .article-content .more-articles-title {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 21px;
}
.article.orgnav-dark-black .content .article-content .more-articles-title p {
  margin: 0 0 10px;
}
.article.orgnav-dark-black .content .article-content .more-articles-title p:before {
  width: 20px;
  border-top: 4px solid var(--border-top-color, #F45B69);
  content: "";
  display: block;
  margin-bottom: 5px;
}
.article.orgnav-dark-black .content .article-content .category-article-3-col .article-category-ui h2 {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  padding-top: 10px;
}
.article.orgnav-dark-black .content .article-content .right-pane {
  width: 25%;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .heading {
  line-height: 15px;
  color: #FFFFFF;
  font-size: 13px;
  padding-bottom: 10px;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .trending-articles {
  gap: 0;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui {
  display: flex;
  width: 100%;
  border-top: 1px solid #656565;
  padding: 15px 0;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui span {
  display: none;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui img {
  width: 76px;
  height: 56px;
}
.article.orgnav-dark-black .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui h2 {
  font-size: 16px;
  padding: 0;
  color: #FFFFFF;
}
.article.orgnav-dark-black .content .footer .horizontal-line {
  border-bottom: 1px solid #656565;
}
.article.orgnav-dark-black .footer .horizontal-line {
  margin-bottom: 10px;
}
.article.orgnav-dark-black .footer .logo {
  padding-left: 10px;
}
.article.orgnav-dark-s1 .header-wrapper .page-header .search-box-ui.rounded .search-button {
  background-color: #1A202E !important;
}
.article.orgnav-dark-s1 .content {
  flex: auto;
}
.article.orgnav-dark-s1 .content .article-content .platinum-article .article-author-div .article-author-info {
  color: #F45B69;
}
.article.orgnav-dark-s1 .content .article-content .platinum-article.swap-author .article-title-container {
  order: 1;
}
.article.orgnav-dark-s1 .content .article-content .platinum-article.swap-author .article-author-div {
  order: 0;
}
.article.orgnav-dark-s1 .content .article-content .platinum-article.swap-author .dynamic-article {
  order: 2;
}
.article.orgnav-dark-s1 .content .article-content .more-articles-title p {
  margin: 0 0 10px;
}
.article.orgnav-dark-s1 .content .article-content .more-articles-title p:before {
  width: 20px;
  border-top: 4px solid var(--border-top-color, #F45B69);
  content: "";
  display: block;
  margin-bottom: 5px;
}
.article.orgnav-dark-s1 .content .article-content .category-article-3-col .article-category-ui h2 {
  color: #C1C1C1;
  font-size: 18px;
  line-height: 24px;
  padding-top: 10px;
}
.article.orgnav-dark-s1 .content .article-content .right-pane {
  width: 25%;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .heading {
  line-height: 15px;
  color: #C1C1C1;
  font-size: 13px;
  padding-bottom: 10px;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .trending-articles {
  gap: 0;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui {
  display: flex;
  width: 100%;
  border-top: 1px solid #656565;
  padding: 15px 0;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui span {
  display: none;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui img {
  width: 76px;
  height: 56px;
}
.article.orgnav-dark-s1 .content .article-content .right-pane .trending-articles-wrapper .trending-articles .article-category-ui h2 {
  font-size: 16px;
  padding: 0;
  color: #C1C1C1;
}
.article.orgnav-dark-s1 .content .footer .horizontal-line {
  border-bottom: 1px solid #656565;
}
.article.orgnav-dark-s1 .footer .horizontal-line {
  margin-bottom: 10px;
}
.article.orgnav-dark-s1 .footer .logo {
  padding-left: 10px;
}

