@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #333;
}

.navbar {
  padding: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
}

[class^=ri-] {
  font-weight: 400;
}

.dropdown-toggle::after {
  border: 0 !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

@font-face {
  font-family: "remixicon";
  src: url("../fonts/remixicon.woff2") format("woff2"), url("../fonts/remixicon.woff") format("woff"), url("../fonts/remixicon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=ri-],
[class*=" ri-"] {
  font-family: "remixicon" !important;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1;
  display: inline-block;
}

:root {
  --sitebg: #ffffff;
  --header-bg: #ffffff;
  --footer-bg: #3c3e50;
  --primary-bg: #A90000;
  --primary-text-color: #3C3E50;
  --secondary-text-color: #7D8594;
  --transition: all 0.3s ease;
  --border-radius: 7px;
  --border-color-20: #2fbdef33;
  --whitetext: #fff;
  --whitebg: #fff;
  --sectionbg: #1a2431;
  --opacity-bg-3: #7D859408;
  --opacity-bg-6: #7D85940F;
  --opacity-bg-7: #7D859412;
  --opacity-bg-10: #7D85941A;
  --border-8: 8px;
  --border-15: #7D859426;
  --font-inter: "Inter";
  --sidebar-width: 317px;
}

.row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.main-layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
}
@media (min-width: 1200px) {
  .main-layout {
    flex-direction: row;
  }
}

.title {
  margin-bottom: 30px;
}
.title h2 {
  color: var(--primary-text-color);
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
  position: relative;
  border-bottom: 1px solid var(--border-15);
  padding-bottom: 11px;
}
.title h2 b {
  font-weight: bold;
}
.title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 27px;
  height: 1px;
  background: var(--primary-bg);
}

.mobile-header {
  display: block;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1200px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header .mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-15);
}
.mobile-header .mobile-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.mobile-header .hamburger-menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  z-index: 99;
}
.mobile-header .hamburger-menu span {
  width: 16px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
  transition: all 0.3s ease;
  display: block;
}
.mobile-header .hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-header .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.mobile-header .hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}
.mobile-header .mobile-search {
  position: relative;
}
.mobile-header .mobile-search .search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}
.mobile-header .mobile-search .search-toggle i {
  font-size: 18px;
}
.mobile-header .mobile-search .search-toggle:hover {
  background: var(--opacity-bg-10);
}
.mobile-header .mobile-search .search-toggle.active {
  background: var(--primary-bg);
  color: white;
}
.mobile-header .mobile-search .search-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.mobile-header .mobile-search .search-container.active {
  opacity: 1;
  visibility: visible;
}
.mobile-header .mobile-search .search-container .search-form {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  border-bottom: 1px solid var(--border-15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-header .mobile-search .search-container .search-form .search-input {
  flex: 1;
  border: none;
  background: var(--opacity-bg-7);
  padding: 15px 20px;
  border-radius: var(--border-8);
  font-size: 16px;
  color: var(--primary-text-color);
  transition: all 0.3s ease;
}
.mobile-header .mobile-search .search-container .search-form .search-input:focus {
  outline: none;
  background: var(--opacity-bg-10);
  box-shadow: 0 0 0 2px var(--primary-bg);
}
.mobile-header .mobile-search .search-container .search-form .search-input::-moz-placeholder {
  color: var(--secondary-text-color);
}
.mobile-header .mobile-search .search-container .search-form .search-input::placeholder {
  color: var(--secondary-text-color);
}
.mobile-header .mobile-search .search-container .search-form .search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--opacity-bg-10);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--secondary-text-color);
}
.mobile-header .mobile-search .search-container .search-form .search-close i {
  font-size: 18px;
}
.mobile-header .mobile-search .search-container .search-form .search-close:hover {
  background: var(--primary-bg);
  color: white;
}
.mobile-header .mobile-search .search-container.active .search-form {
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .mobile-header .mobile-search {
    display: none;
  }
}
.mobile-header .mobile-logo {
  margin-left: auto;
}
.mobile-header .mobile-logo .logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #dc2626;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 50;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--opacity-bg-3);
  transition: all 0.3s ease;
  border: 1px solid rgba(125, 133, 148, 0.0509803922);
  border-top: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
@media (min-width: 1200px) {
  .sidebar {
    position: sticky;
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-overflow-scrolling: auto;
  }
}
.sidebar.active {
  left: 0;
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.sidebar .sidebar-content {
  padding-top: 30px;
  padding-bottom: 90px;
  min-height: calc(100vh - 90px);
}
.sidebar .sidebar-inner {
  width: var(--sidebar-width);
  padding: 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .sidebar .sidebar-inner {
    padding-top: 0;
  }
}
@media (max-width: 1023px) {
  .sidebar .sidebar-inner {
    padding-top: 32px;
  }
}
.sidebar .sidebar-inner .subscribe-btn {
  color: var(--whitetext);
  font-size: 15px;
  font-family: Inter;
  font-weight: 600;
  background: var(--primary-bg);
  padding: 11px;
  border-radius: var(--border-8);
  text-align: center;
  margin: 0 50px;
}
.sidebar .sidebar-logo {
  display: block;
  padding: 0 50px;
}
@media (min-width: 1200px) {
  .sidebar .sidebar-logo {
    height: auto;
  }
}
@media (max-width: 1023px) {
  .sidebar .sidebar-logo {
    height: 18px;
  }
}
.sidebar .sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar .sidebar-title {
  color: var(--secondary-text-color);
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  padding: 0 50px;
}
.sidebar .sidebar-menu {
  color: #657285;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.sidebar .sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #657285;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
  padding: 0 50px;
}
.sidebar .sidebar-menu-item:hover {
  color: var(--primary-bg);
}
.sidebar .sidebar-menu-item.active {
  color: var(--primary-bg);
}
.sidebar .sidebar-menu-item.active::after {
  content: "";
  position: absolute;
  left: -1px;
  width: 3px;
  height: 100%;
  border-radius: 0 100px 100px 0;
  background: var(--primary-bg);
}
.sidebar .sidebar-menu-item i {
  font-size: 24px;
  width: 24px;
  text-align: center;
}
.sidebar .sidebar-menu-item span {
  flex: 1;
}
.sidebar .sidebar-menu-item .ri-arrow-right-up-line {
  font-size: 20px;
  margin-left: auto;
}
.sidebar .sidebar-promo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 25px 50px;
  background: var(--opacity-bg-6);
  border-top: 1px solid var(--border-15);
  margin-top: 30px;
}
.sidebar .sidebar-promo .promo-text {
  font-size: 12px;
  font-family: Inter;
  font-weight: 400;
  line-height: 15px;
  color: var(--secondary-text-color);
}
.sidebar .sidebar-promo .promo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
}

.main-content {
  flex: 1;
  width: 100%;
  min-width: 0;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .main-content {
    margin-left: 0;
    width: calc(100% - var(--sidebar-width));
  }
}

.hero {
  margin: 0 0 30px 0;
}
.hero .hero-content {
  position: relative;
}
.hero .hero-content .heroSlider .swiper-pagination {
  bottom: 30px;
  text-align: right;
  padding-right: 18px;
}
.hero .hero-content .heroSlider .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid rgba(125, 133, 148, 0.5019607843);
  opacity: 1;
  margin: 0 2.5px;
}
.hero .hero-content .heroSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #7D8594;
}
.hero .hero-content .heroSlider .hero-content {
  display: flex;
  align-items: center;
}
.hero .hero-content .heroSlider .hero-content .hero-media {
  width: 100%;
  max-width: 606px;
}
.hero .hero-content .heroSlider .hero-content .hero-media .media-wrapper {
  display: flex;
  align-items: center;
}
.hero .hero-content .heroSlider .hero-content .hero-media .media-wrapper img {
  border-radius: var(--border-8);
  height: auto;
}
.hero .hero-content .heroSlider .hero-content .hero-body {
  background: url("../images/bg-illustrations.svg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 370px;
  border-radius: 0 var(--border-8) var(--border-8) 0;
  padding: 50px;
  position: relative;
}
.hero .hero-content .heroSlider .hero-content .hero-body h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary-text-color);
}
.hero .hero-content .heroSlider .hero-content .hero-body p {
  color: #7D8594;
  font-size: 17px;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 21px;
  margin: 15px 0;
}
.hero .hero-content .heroSlider .hero-content .hero-body .hero-meta {
  display: flex;
  align-items: center;
}
.hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span {
  display: flex;
  align-items: center;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 16px;
}
.hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span:nth-child(2) {
  margin: 0 5px;
}
.hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span i {
  font-size: 18px;
  margin-right: 5px;
}

.navbar.navbar-collapsed .sidebar {
  left: 0;
}

.content:not(:last-child) {
  margin-bottom: 30px;
}
.content .content-grid .content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content .content-grid .content-card img {
  border-radius: var(--border-8);
  height: auto;
}
.content .content-grid .content-card .card-badge {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--primary-bg);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--whitetext);
  border-radius: var(--border-8);
}
.content .content-grid .content-card.second .card-content {
  background: transparent;
  padding: 0;
  margin: 0;
  padding-top: 15px;
}
.content .content-grid .content-card.second .card-content .card-title {
  color: #3C3E50;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}
.content .content-grid .content-card .card-content {
  background: var(--opacity-bg-7);
  padding: 20px 15px 20px 15px;
  margin-top: -5px;
  border-radius: 0 0 var(--border-8) var(--border-8);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content .content-grid .content-card .card-content .card-title {
  color: var(--primary-text-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
  flex-grow: 1;
}
.content .content-grid .content-card .card-content .card-category {
  color: var(--secondary-text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 5px;
}
.content .content-grid .content-card .card-content .card-meta {
  display: flex;
  align-items: center;
}
.content .content-grid .content-card .card-content .card-meta span {
  display: flex;
  align-items: center;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 16px;
}
.content .content-grid .content-card .card-content .card-meta span:nth-child(2) {
  margin: 0 5px;
}
.content .content-grid .content-card .card-content .card-meta span i {
  font-size: 18px;
  margin-right: 5px;
}
.content .nav-tabs {
  border-bottom: 1px solid var(--border-15);
  margin-bottom: 16px;
  padding-bottom: 15px;
  position: relative;
  gap: 15px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 133, 148, 0.3) transparent;
}
.content .nav-tabs::-webkit-scrollbar {
  height: 4px;
}
.content .nav-tabs::-webkit-scrollbar-track {
  background: transparent;
}
.content .nav-tabs::-webkit-scrollbar-thumb {
  background: rgba(125, 133, 148, 0.3);
  border-radius: 2px;
}
.content .nav-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 133, 148, 0.5);
}
.content .nav-tabs .nav-item {
  flex-shrink: 0;
}
.content .nav-tabs .nav-item .nav-link {
  color: var(--secondary-text-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  transition: var(--transition);
  border: none;
  padding: 0;
  white-space: nowrap;
  position: relative;
}
.content .nav-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--primary-bg);
  transition: width 0.3s ease;
}
.content .nav-tabs .nav-item .nav-link.active {
  color: var(--primary-text-color);
}
.content .nav-tabs .nav-item .nav-link.active::after {
  width: 100%;
}

.banner.article .banner-content {
  background: var(--opacity-bg-10);
  min-height: 168px;
}
.banner.article .banner-content h3 {
  color: var(--primary-text-color);
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 3px;
}
.banner.article .banner-content p {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.banner .banner-content {
  background: url("../images/banner-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 231px;
  text-align: center;
  border-radius: var(--border-8);
  overflow: hidden;
}
.banner .banner-content.banner-active {
  background: transparent;
  background-image: none;
}
.banner .banner-content .banner-img img {
  height: auto;
  border-radius: var(--border-8);
}
.banner .banner-content .banner-logo {
  display: flex;
  align-items: center;
  opacity: 0.5;
}
.banner .banner-content h3 {
  color: var(--primary-text-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
  margin-top: 15px;
}
.banner .banner-content p {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 20px;
  margin-top: 4px;
}
.banner .banner-content .action-link {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--whitetext);
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  line-height: 19px;
  padding: 11px;
  border-radius: 3px;
}
.banner .banner-content .action-link i {
  font-size: 24px;
  margin-right: 4px;
}

.featured-section {
  margin-top: 30px;
}
.featured-section .title {
  margin-bottom: 20px;
}
.featured-section .nav-tabs {
  border-bottom: none;
  gap: 18px;
  margin-top: 0;
}
.featured-section .nav-tabs.article {
  margin: 0 8px;
}
.featured-section .nav-tabs .nav-item .nav-link {
  color: var(--secondary-text-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  border-radius: var(--border-8);
  border: 1px solid var(--border-15);
  transition: var(--transition);
  padding: 12px;
  min-width: 86px;
}
.featured-section .nav-tabs .nav-item .nav-link:hover {
  background: var(--primary-bg);
  color: var(--whitetext);
}
.featured-section .nav-tabs .nav-item .nav-link.active {
  background: var(--primary-bg);
  color: var(--whitetext);
  border-color: var(--primary-bg);
}
.featured-section .tab-content {
  margin-top: 0;
}
.featured-section .content-card {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}
.featured-section .content-card .content-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--border-8);
  border: 1px solid var(--border-15);
}
.featured-section .content-card .content-item .content-media {
  width: 100%;
  max-width: 250px;
}
.featured-section .content-card .content-item .content-media .media {
  display: flex;
  align-items: center;
}
.featured-section .content-card .content-item .content-media .media img {
  border-radius: var(--border-8);
}
.featured-section .content-card .content-item .card-content {
  display: flex;
  flex-direction: column;
}
.featured-section .content-card .content-item .card-content .card-category {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.featured-section .content-card .content-item .card-content .card-title {
  color: var(--primary-text-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}
.featured-section .content-card .content-item .card-content .card-desc {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18px;
}
.featured-section .content-card .loadmore {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  background: var(--opacity-bg-10);
  border: none;
  border-radius: var(--border-8);
  padding: 17px;
}
.featured-section .content-card .loadmore i {
  font-size: 20px;
  margin-left: 6px;
}
.featured-section .feed-wrapper .x-link {
  color: var(--secondary-text-color);
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  padding: 8.5px 10px;
  border-radius: var(--border-8);
  border: 1px solid var(--border-15);
  margin-bottom: 20px;
}
.featured-section .feed-wrapper .x-link i {
  font-size: 24px;
  margin-right: 4px;
}
.featured-section .feed-wrapper .x-scroll {
  background: #15202B;
  padding: 20px 10px 20px 20px;
  border-radius: var(--border-8);
}
.featured-section .feed-wrapper .x-scroll .x-feed {
  overflow-y: scroll;
  max-height: 639px;
  position: relative;
  padding-right: 10px;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-track {
  background: #7D8594;
  border-radius: 2px;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-thumb:active {
  background: #e0e0e0;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.featured-section .feed-wrapper .x-scroll .x-feed::-webkit-scrollbar-corner {
  background: transparent;
}
.featured-section .feed-wrapper .x-scroll .x-feed::after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 119px;
  background: linear-gradient(180deg, rgba(21, 32, 43, 0) 0%, #15202B 100%);
  pointer-events: none;
  z-index: 1;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet {
  display: flex;
  flex-direction: column;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet:not(:last-child) {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-15);
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head .tweet-profile {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head .tweet-profile img {
  border-radius: 5px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head .right .x-name {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--whitetext);
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  margin-bottom: 3px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head .right .x-name i {
  font-size: 14px;
  color: #E1B518;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .tweet-head .right .x-info span {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  line-height: 14px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-content .x-media {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-content .x-media img {
  height: auto;
  border-radius: var(--border-8);
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-content .x-title {
  color: var(--whitetext);
  font-size: 16px;
  font-family: Inter;
  font-weight: 500;
  line-height: 21px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-bottom {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-bottom span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary-text-color);
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 14px;
}
.featured-section .feed-wrapper .x-scroll .x-feed .tweet .x-bottom span i {
  font-size: 17px;
}

.author-profile {
  padding: 25px;
  background: var(--opacity-bg-10);
  border-radius: var(--border-8);
  position: relative;
}
.author-profile .author-badge {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--primary-bg);
  color: var(--whitetext);
  font-size: 13px;
  font-family: Inter;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  align-items: center;
  border-radius: 0 var(--border-8) 0 var(--border-8);
  gap: 5px;
  padding: 10px;
}
.author-profile .author-badge i {
  font-size: 16px;
}
.author-profile .author-header {
  display: flex;
  align-items: center;
}
.author-profile .author-header .author-avatar {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.author-profile .author-header .author-avatar img {
  -o-object-fit: cover;
     object-fit: cover;
}
.author-profile .author-header .author-info .author-name {
  color: var(--primary-text-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}
.author-profile .author-header .author-info .author-title {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  line-height: 18px;
  margin-top: 4px;
  margin-bottom: 10px;
}
.author-profile .author-header .author-info .author-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-profile .author-header .author-info .author-social .social-link {
  font-size: 20px;
  color: var(--secondary-text-color);
  transition: all 0.3s ease-in-out;
}
.author-profile .author-header .author-info .author-social .social-link:hover {
  color: var(--primary-text-color);
}
.author-profile .author-bio {
  margin-top: 25px;
}
.author-profile .author-bio p {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18px;
}

.podcast {
  margin-top: 30px;
}
.podcast .content-grid .loadmore {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  background: var(--opacity-bg-10);
  border: none;
  border-radius: var(--border-8);
  padding: 17px;
}
.podcast .content-grid .loadmore i {
  font-size: 20px;
  margin-left: 6px;
}
.podcast .content-grid .content-card.right .content-item .content-media a::before {
  left: unset;
  right: 0;
  background-image: url("../images/podcast-circle-right.png");
}
.podcast .content-grid .content-card .content-item {
  display: flex;
  align-items: center;
  align-items: stretch;
  background: rgba(125, 133, 148, 0.1019607843);
  border-radius: var(--border-8);
  overflow: hidden;
  position: relative;
}
.podcast .content-grid .content-card .content-item .content-media {
  width: 100%;
  max-width: 285px;
  position: relative;
}
.podcast .content-grid .content-card .content-item .content-media a {
  display: flex;
  align-items: center;
  background: var(--primary-bg);
  position: relative;
  padding: 15px;
  z-index: 0;
  border-radius: var(--border-8);
  overflow: hidden;
}
.podcast .content-grid .content-card .content-item .content-media a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 97px;
  height: 162px;
  background: url("../images/podcast-circle.png") no-repeat;
  pointer-events: none;
  z-index: -1;
}
.podcast .content-grid .content-card .content-item .content-media a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.3'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}
.podcast .content-grid .content-card .content-item .content-media a .img-wrap {
  position: relative;
  display: inline-block;
}
.podcast .content-grid .content-card .content-item .content-media a .img-wrap img {
  display: block;
  border-radius: 8px;
  height: auto;
}
.podcast .content-grid .content-card .content-item .content-media a .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #fff;
  border-radius: 8px;
  pointer-events: none;
  box-sizing: border-box;
}
.podcast .content-grid .content-card .content-item .card-badge {
  position: absolute;
  right: 13px;
  top: 13px;
  background: var(--primary-bg);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--whitetext);
  border-radius: var(--border-8);
  z-index: 1;
}
.podcast .content-grid .content-card .content-item .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  position: relative;
}
.podcast .content-grid .content-card .content-item .card-content .card-meta {
  display: flex;
  align-items: center;
}
.podcast .content-grid .content-card .content-item .card-content .card-meta a {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 16px;
}
.podcast .content-grid .content-card .content-item .card-content .card-meta span {
  display: flex;
  align-items: center;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 16px;
}
.podcast .content-grid .content-card .content-item .card-content .card-meta span:nth-child(2) {
  margin: 0 5px;
}
.podcast .content-grid .content-card .content-item .card-content .card-meta span i {
  font-size: 18px;
  margin-right: 5px;
}
.podcast .content-grid .content-card .content-item .card-content .card-title {
  color: var(--primary-text-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  margin: 10px 0;
}
.podcast .content-grid .content-card .content-item .card-content .card-desc {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  line-height: 18px;
}

.article-content {
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.article-content.aboutus {
  margin-bottom: 20px;
}
.article-content.aboutus .article-body {
  padding: 30px;
  border-radius: var(--border-8);
  border: 1px solid var(--border-15);
}
.article-content.aboutus .authors {
  padding: 40px;
  border-radius: var(--border-8);
  background: var(--opacity-bg-10);
  text-align: center;
  display: grid;
  grid-template-columns: repeat(7, 7fr);
  margin-bottom: 25px;
}
.article-content.aboutus .authors .author {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.article-content.aboutus .authors .author .author-avatar img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-8);
}
.article-content.aboutus .authors .author .author-name {
  color: var(--primary-text-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}
.article-content.aboutus .authors .author .author-title {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
}
.article-content.aboutus .action-link {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--whitetext);
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  line-height: 19px;
  padding: 11px;
  border-radius: 3px;
}
.article-content.aboutus .action-link i {
  font-size: 24px;
  margin-right: 4px;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: var(--primary-text-color);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}
.article-content h1:hover,
.article-content h2:hover,
.article-content h3:hover,
.article-content h4:hover,
.article-content h5:hover,
.article-content h6:hover {
  color: var(--primary-bg);
}
.article-content h1 {
  font-size: 35px;
  line-height: 46px;
}
.article-content h2 {
  font-size: 25px;
  line-height: 36px;
}
.article-content h3 {
  font-size: 24px;
  line-height: 32px;
}
.article-content h4 {
  font-size: 20px;
  line-height: 28px;
}
.article-content h5 {
  font-size: 18px;
  line-height: 26px;
}
.article-content h6 {
  font-size: 16px;
  line-height: 24px;
}
.article-content p {
  padding: 0 0 20px 0;
  color: #657285;
  font-size: 17px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.article-content p b {
  font-weight: bold;
}
.article-content ul {
  list-style: disc;
  padding-left: 30px;
}
.article-content ul li {
  color: #657285;
  font-size: 17px;
  font-family: Inter;
  font-weight: 400;
  line-height: 21px;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.article-content a {
  color: var(--primary-bg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.article-content ::-moz-selection {
  background: var(--primary-bg);
  color: white;
}
.article-content ::selection {
  background: var(--primary-bg);
  color: white;
}
.article-content ::-moz-selection {
  background: var(--primary-bg);
  color: white;
}
.article-content .article-header .article-image {
  display: flex;
  align-items: center;
}
.article-content .article-header .article-image img {
  border-radius: var(--border-8);
  height: auto;
}
.article-content .article-header .article-meta .meta-left {
  margin: 20px 0;
  border-bottom: 1px solid var(--border-15);
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-content .article-header .article-meta .meta-left span,
.article-content .article-header .article-meta .meta-left a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
}
.article-content .article-header .article-meta .meta-left span i,
.article-content .article-header .article-meta .meta-left a i {
  font-size: 20px;
}
.article-content .article-header .article-title {
  color: var(--primary-text-color);
  font-size: 35px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 20px;
}
.article-content .article-body .article-quote {
  background: var(--opacity-bg-7);
  border-left: 4px solid var(--primary-bg);
  padding: 25px 30px;
  margin: 30px 0;
  margin-top: 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  position: relative;
}
.article-content .article-body .article-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 60px;
  font-weight: bold;
  color: var(--primary-bg);
  opacity: 0.3;
  line-height: 1;
}
.article-content .article-body .article-quote p {
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: var(--primary-text-color);
  font-weight: 500;
}
.article-content .article-body .inline-image {
  margin: 30px 0;
}
.article-content .article-body .inline-image .image {
  padding: 25px;
  border-radius: var(--border-8);
  background: var(--opacity-bg-10);
  display: inline-flex;
}
.article-content .article-body .inline-image .image img {
  border-radius: var(--border-radius);
  height: auto;
}
.article-content .article-body .inline-image .image-caption {
  margin-top: 15px;
  font-size: 14px;
  color: var(--secondary-text-color);
  font-style: italic;
  text-align: left;
}
.article-content .article-body .article-highlight {
  background: linear-gradient(135deg, var(--opacity-bg-10) 0%, var(--opacity-bg-7) 100%);
  border: 1px solid var(--border-15);
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 30px 0;
}
.article-content .article-body .article-highlight h3 {
  color: var(--primary-bg);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-content .article-body .article-highlight h3::before {
  content: "✓";
  background: var(--primary-bg);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.article-content .article-body .article-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-content .article-body .article-highlight ul li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0 !important;
}
.article-content .article-body .article-highlight ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-bg);
  font-weight: bold;
  font-size: 18px;
}
.article-content .article-body .article-highlight ul li:last-child {
  padding-bottom: 0;
}
.article-content .article-footer {
  margin-top: 30px;
  padding-top: 30px;
}
.article-content .article-footer .article-tags {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.article-content .article-footer .article-tags .tag-label {
  font-weight: 600;
  color: var(--primary-text-color);
  margin-right: 5px;
}
.article-content .article-footer .article-tags .tag {
  background: var(--opacity-bg-7);
  color: var(--secondary-text-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.article-content .article-footer .article-tags .tag:hover {
  background: var(--primary-bg);
  color: white;
  transform: translateY(-1px);
}
.article-content .article-footer .article-actions .social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.article-content .article-footer .article-actions .social-share .share-label {
  font-weight: 600;
  color: var(--primary-text-color);
}
.article-content .article-footer .article-actions .social-share .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}
.article-content .article-footer .article-actions .social-share .social-btn i {
  font-size: 18px;
}
.article-content .article-footer .article-actions .social-share .social-btn.twitter {
  background: #1DA1F2;
  color: white;
}
.article-content .article-footer .article-actions .social-share .social-btn.twitter:hover {
  background: #0d8bd9;
  transform: translateY(-2px);
}
.article-content .article-footer .article-actions .social-share .social-btn.facebook {
  background: #4267B2;
  color: white;
}
.article-content .article-footer .article-actions .social-share .social-btn.facebook:hover {
  background: #365899;
  transform: translateY(-2px);
}
.article-content .article-footer .article-actions .social-share .social-btn.whatsapp {
  background: #25D366;
  color: white;
}
.article-content .article-footer .article-actions .social-share .social-btn.whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}
.article-content .article-footer .article-actions .social-share .social-btn.linkedin {
  background: #0077B5;
  color: white;
}
.article-content .article-footer .article-actions .social-share .social-btn.linkedin:hover {
  background: #005582;
  transform: translateY(-2px);
}

.sticky-content {
  position: sticky;
  top: 20px;
}
.sticky-content.contract .content-wrapper h6 {
  margin-bottom: 20px;
}
.sticky-content.contract .content-wrapper .article-list .item {
  color: #657285;
  font-size: 15px;
  font-weight: 600;
}
.sticky-content.contract .content-wrapper .article-list .item:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.sticky-content.contract .content-wrapper .article-list .item.active {
  color: var(--primary-text-color);
}
.sticky-content.contract .content-wrapper .article-list .item:hover {
  color: var(--primary-text-color);
}
.sticky-content .content-wrapper {
  background: var(--opacity-bg-10);
  border-radius: var(--border-radius);
  padding: 20px;
}
.sticky-content .content-wrapper h6 {
  color: var(--secondary-text-color);
  color: #657285;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sticky-content .content-wrapper h6 i {
  font-size: 20px;
}
.sticky-content .content-wrapper .article-list {
  display: flex;
  flex-direction: column;
}
.sticky-content .content-wrapper .article-list .item {
  display: block;
  text-decoration: none;
  color: var(--primary-text-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  transition: var(--transition);
}
.sticky-content .content-wrapper .article-list .item:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-15);
}
.sticky-content .content-wrapper .article-list .item:hover {
  transform: translateX(5px);
}
.sticky-content .content-wrapper .article-list .item span {
  display: flex;
  align-items: center;
  margin-top: 6px;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  line-height: 16px;
  color: var(--secondary-text-color);
  gap: 5px;
}
.sticky-content .content-wrapper .article-list .item span i {
  font-size: 15px;
}

footer {
  background: var(--opacity-bg-10);
  margin: 18px 0;
  padding: 30px;
  border-radius: var(--border-8);
}
footer .footer-top {
  border-bottom: 1px solid var(--border-15);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
footer .footer-top .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-top .top-content .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-top .top-content .footer-logo .footer-logo-wrapper {
  display: flex;
  align-items: center;
}
footer .footer-top .top-content .footer-logo span {
  color: var(--primary-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
footer .footer-top .top-content .right .links {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
footer .footer-top .top-content .right .links li {
  position: relative;
  display: flex;
  align-items: center;
}
footer .footer-top .top-content .right .links li + li::before {
  content: "•";
  margin: 0 8px;
  color: var(--secondary-text-color);
}
footer .footer-top .top-content .right .links li a {
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18px;
  color: var(--secondary-text-color);
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-bottom .footer-mail {
  color: var(--secondary-text-color);
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18px;
}
footer .footer-bottom .social {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-bottom .social li a {
  font-size: 20px;
  color: var(--secondary-text-color);
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom .social li a:hover {
  color: var(--primary-text-color);
}

@media (min-width: 1366px) {
  .container {
    max-width: 1254px;
  }
}
@media (max-width: 1366px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1023px) {
  .main-content {
    width: 100%;
    padding: 0;
  }
  .sidebar {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .podcast .content-grid .content-card .content-item .content-media .card-badge {
    display: none;
  }
}
@media (max-width: 1200px) {
  .sidebar {
    background: var(--whitebg);
  }
  .article-content.aboutus .authors {
    grid-template-columns: repeat(4, 4fr);
    gap: 10px;
  }
  .sm-none {
    display: none !important;
  }
  .podcast .content-grid .content-card .content-item {
    position: relative;
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .podcast .content-grid .content-card .content-item .card-content {
    padding: 20px;
    position: unset;
  }
  .podcast .content-grid .content-card .content-item .card-content .card-meta {
    justify-content: center;
  }
  .hero .hero-content .heroSlider .hero-content {
    align-items: stretch;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body {
    min-height: 280px;
    padding: 30px;
    margin-left: -4px;
    padding-left: 34px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .sticky-content {
    display: none;
  }
  footer .footer-top .top-content {
    flex-direction: column;
    gap: 15px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-media {
    max-width: 100%;
  }
  .hero .hero-content .heroSlider .hero-content .hero-media .media-wrapper img {
    border-radius: var(--border-8) var(--border-8) 0 0;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body {
    border-radius: 0 0 var(--border-8) var(--border-8);
    min-height: 240px;
    padding: 40px 30px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body p {
    font-size: 15px;
    line-height: 20px;
    margin: 12px 0;
  }
}
@media (max-width: 824px) {
  .hero .hero-content .heroSlider .hero-content {
    flex-direction: column;
  }
  .hero .hero-content .heroSlider .hero-content .hero-media {
    max-width: 100%;
  }
  .hero .hero-content .heroSlider .hero-content .hero-media .media-wrapper img {
    border-radius: var(--border-8) var(--border-8) 0 0;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body {
    border-radius: 0 0 var(--border-8) var(--border-8);
    min-height: 220px;
    padding: 40px 30px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body p {
    font-size: 15px;
    line-height: 20px;
    margin: 12px 0;
  }
}
@media (max-width: 768px) {
  .article-content.aboutus .authors {
    grid-template-columns: repeat(3, 3fr);
    gap: 10px;
  }
  .hero .hero-content .heroSlider .swiper-pagination {
    bottom: 7px;
    padding-right: 12px;
  }
  .hero .hero-content .heroSlider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body {
    padding: 30px 25px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span {
    font-size: 12px;
    line-height: 15px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span i {
    font-size: 16px;
    margin-right: 4px;
  }
  .article-content h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .article-content h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .article-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .article-content h4 {
    font-size: 18px;
    line-height: 26px;
  }
  .article-content h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .article-content h6 {
    font-size: 15px;
    line-height: 22px;
  }
  .article-content p {
    font-size: 16px;
    line-height: 1.5;
  }
  .article-content p:first-of-type::first-letter {
    float: none;
    font-size: inherit;
    margin: 0;
    color: inherit;
    font-weight: inherit;
  }
  .article-content .article-header .article-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .article-content .article-header .article-meta .meta-left {
    flex-wrap: wrap;
    gap: 5px;
  }
  .article-content .article-header .article-meta .meta-left span,
  .article-content .article-header .article-meta .meta-left a {
    font-size: 14px;
  }
  .article-content .article-body .article-quote {
    padding: 20px;
    margin: 20px 0;
  }
  .article-content .article-body .article-quote::before {
    font-size: 40px;
    top: -5px;
  }
  .article-content .article-body .article-quote p {
    font-size: 16px;
    line-height: 24px;
  }
  .article-content .article-body .article-highlight {
    padding: 20px;
    margin: 20px 0;
  }
  .article-content .article-body .article-highlight h3 {
    font-size: 18px;
  }
  .article-content .article-body .article-highlight ul li {
    font-size: 15px;
    line-height: 22px;
  }
  .article-content .article-body .inline-image {
    margin: 20px 0;
  }
  .article-content .article-body .inline-image .image-caption {
    font-size: 13px;
  }
  .article-content .article-footer {
    margin-top: 40px;
    padding-top: 25px;
  }
  .article-content .article-footer .article-tags .tag {
    font-size: 13px;
    padding: 5px 10px;
  }
  .article-content .article-footer .article-actions .social-share {
    gap: 10px;
  }
  .article-content .article-footer .article-actions .social-share .social-btn {
    width: 35px;
    height: 35px;
  }
  .article-content .article-footer .article-actions .social-share .social-btn i {
    font-size: 16px;
  }
  .related-articles {
    margin-top: 40px;
  }
  .related-articles .content-grid .content-card.second {
    margin-bottom: 20px;
  }
  .related-articles .content-grid .content-card.second .card-content .card-title {
    font-size: 18px;
    line-height: 24px;
  }
  .sticky-content .content-wrapper {
    padding: 20px;
  }
  .sticky-content .content-wrapper h6 {
    font-size: 16px;
  }
  .sticky-content .content-wrapper .article-list .item {
    padding: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .sticky-content .content-wrapper .article-list .item span {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .featured-section .nav-tabs {
    gap: 10px;
  }
  .featured-section .content-card .content-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .article-content.aboutus .article-body {
    padding: 20px;
  }
  .article-content.aboutus .authors {
    padding: 20px;
    grid-template-columns: repeat(2, 2fr);
    gap: 15px;
  }
  .article-content.aboutus .authors .author-name {
    font-size: 16px !important;
  }
  .article-content.aboutus .authors .author-title {
    font-size: 13px !important;
  }
  .article-content .article-header .article-meta .meta-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-content .article-header .article-meta .meta-left span:nth-child(2), .article-content .article-header .article-meta .meta-left span:nth-child(4) {
    display: none;
  }
  footer .footer-top .top-content .footer-logo span {
    font-size: 14px;
  }
  footer .footer-top .top-content .right .links {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  footer .footer-top .top-content .right .links li a {
    text-align: center;
  }
  footer .footer-top .top-content .right .links li::before {
    content: none !important;
  }
  .hero .hero-content .heroSlider .hero-content .hero-media .media-wrapper img {
    border-radius: var(--border-8);
  }
  .hero .hero-content .heroSlider .hero-content .hero-body {
    padding: 25px 20px;
    border-radius: var(--border-8);
    margin-top: 15px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta {
    justify-content: flex-start;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span {
    font-size: 12px;
    line-height: 14px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span:nth-child(2) {
    margin: 0 4px;
  }
  .hero .hero-content .heroSlider .hero-content .hero-body .hero-meta span i {
    font-size: 14px;
    margin-right: 3px;
  }
}
@media (max-width: 480px) {
  .author-profile .author-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .author-profile .author-header .author-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .title {
    margin-bottom: 20px;
  }
  .title h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .article-content .article-header .article-title {
    font-size: 24px;
    line-height: 30px;
  }
  .article-content .article-header .article-meta .meta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .article-content .article-header .article-meta .meta-left span:nth-child(2) {
    display: none;
  }
  .article-content .article-body .article-quote {
    padding: 15px;
  }
  .article-content .article-body .article-quote p {
    font-size: 15px;
    line-height: 22px;
  }
  .article-content .article-body .article-highlight {
    padding: 15px;
  }
  .article-content .article-body .article-highlight h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .article-content .article-footer .article-actions .social-share {
    flex-wrap: wrap;
  }
  .article-content .article-footer .article-actions .social-share .share-label {
    width: 100%;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */