/**
* Core styles for blog.
*/

@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@300..800&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "EB Garamond",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "EB Garamond",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #535353; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #465367; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #6a6a6a;  /* The default color of the main navmenu links */
  --nav-hover-color: #465367; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #6a6a6a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #465367; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f2f2f2;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title .section-title-container {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-color);
}

.section-title h2 {
  font-size: 40px;
  font-weight: 0;
}

.section-title p {
  margin-bottom: 0;
}

.section-title p a {
  color: var(--default-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--default-color);
  font-family: var(--nav-font);
  font-weight: 500;
  padding-bottom: 2px;
}

/*--------------------------------------------------------------
# Trending Category Section
--------------------------------------------------------------*/
.trending-category .post-entry {
  margin-bottom: 30px;
}

.trending-category .post-entry img {
  margin-bottom: 30px;
}

.trending-category .post-entry h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.trending-category .post-entry h2 a {
  color: var(--heading-color);
}

.trending-category .post-entry h2 a:hover {
  text-decoration: underline;
}

.trending-category .post-entry.lg h2 {
  font-size: 40px;
  line-height: 1;
}

.trending-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.trending-category .custom-border {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

@media (max-width: 768px) {
  .trending-category .custom-border {
    border: none !important;
  }
}

.trending-category .author .photo {
  margin-right: 10px;
}

.trending-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.trending-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.trending-category .trending {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.trending-category .trending>h3 {
  color: var(--default-color);
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.trending-category .trending .trending-post {
  padding: 0;
  margin: 0;
}

.trending-category .trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.trending-category .trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.trending-category .trending .trending-post li a .number {
  position: absolute;
  z-index: 1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.trending-category .trending .trending-post li a h3 {
  font-size: 18px;
  color: var(--default-color);
  transition: 0.3s;
}

.trending-category .trending .trending-post li a .author {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

.trending-category .trending .trending-post li a:hover h3 {
  color: var(--default-color);
  text-decoration: underline;
}

.trending-category .trending .trending-post li:last-child a {
  border-bottom: none;
}

/*--------------------------------------------------------------
# Category Feature Sections
--------------------------------------------------------------*/
.culture-category .post-entry,
.business-category .post-entry,
.lifestyle-category .post-entry {
  margin-bottom: 30px;
}

.culture-category .post-entry h3 a,
.business-category .post-entry h3 a,
.lifestyle-category .post-entry h3 a {
  color: var(--heading-color);
  font-weight: 600;
}

.culture-category .post-entry h3 a:hover,
.business-category .post-entry h3 a:hover,
.lifestyle-category .post-entry h3 a:hover,
.culture-category .post-list h2 a:hover,
.business-category .post-list h2 a:hover,
.lifestyle-category .post-list h2 a:hover {
  text-decoration: underline;
}

.culture-category .post-entry .thumbnail,
.business-category .post-entry .thumbnail,
.lifestyle-category .post-entry .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .culture-category .post-entry .thumbnail,
  .business-category .post-entry .thumbnail,
  .lifestyle-category .post-entry .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.culture-category .post-entry.half .thumbnail,
.business-category .post-entry.half .thumbnail,
.lifestyle-category .post-entry.half .thumbnail {
  flex: 0 0 50%;
}

.culture-category .post-entry.small-img .thumbnail,
.business-category .post-entry.small-img .thumbnail,
.lifestyle-category .post-entry.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .culture-category .post-entry.half .thumbnail,
  .business-category .post-entry.half .thumbnail,
  .lifestyle-category .post-entry.half .thumbnail,
  .culture-category .post-entry.small-img .thumbnail,
  .business-category .post-entry.small-img .thumbnail,
  .lifestyle-category .post-entry.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.culture-category .border-bottom,
.business-category .border-bottom,
.lifestyle-category .custom-border,
.lifestyle-category .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.culture-category .post-meta,
.business-category .post-meta,
.lifestyle-category .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.culture-category .author .photo,
.business-category .author .photo,
.lifestyle-category .author .photo {
  margin-right: 10px;
}

.culture-category .author .photo img,
.business-category .author .photo img,
.lifestyle-category .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.culture-category .author .name h3,
.business-category .author .name h3,
.lifestyle-category .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.culture-category .post-list,
.business-category .post-list,
.lifestyle-category .post-list {
  margin-bottom: 30px;
}

.culture-category .post-list img,
.business-category .post-list img,
.lifestyle-category .post-list img {
  margin-bottom: 30px;
}

.culture-category .post-list h2,
.business-category .post-list h2,
.lifestyle-category .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.culture-category .post-list h2 a,
.business-category .post-list h2 a,
.lifestyle-category .post-list h2 a {
  color: var(--heading-color);
}

.culture-category .post-list.lg h2,
.business-category .post-list.lg h2,
.lifestyle-category .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  border-radius: 1.1rem 1.1rem 0 0;`r`n  overflow: hidden;
}

.blog-details .post-img img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: var(--amk-primary);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--amk-primary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

:root {
  --amk-primary: #133260;
  --amk-primary-deep: #0b2143;
  --amk-secondary: #af1600;
  --amk-accent: #c9a45c;
  --amk-light: #f5f8f2;
  --amk-dark: #252c30;
  --amk-body: #344150;
  --amk-surface: #ffffff;
  --amk-surface-soft: linear-gradient(180deg, rgba(19, 50, 96, .04), rgba(255, 255, 255, .98));
  --amk-surface-paper: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(244, 246, 240, .96));
  --amk-surface-dark: linear-gradient(145deg, rgba(8, 26, 54, .98), rgba(19, 50, 96, .92));
  --amk-border: 1px solid rgba(19, 50, 96, .1);
  --amk-border-strong: 1px solid rgba(201, 164, 92, .28);
  --amk-shadow-soft: 0 1.2rem 2.7rem rgba(7, 18, 40, .08);
  --amk-shadow-card: 0 .9rem 2rem rgba(7, 18, 40, .08);
  --amk-shadow-dark: 0 1.3rem 2.8rem rgba(5, 15, 34, .22);
}

html {
  scroll-behavior: smooth;
}

body,
body.index-page,
body.category-page,
body.single-post-page,
body.about-page {
  color: var(--amk-body);
  background:
    radial-gradient(circle at top center, rgba(201, 164, 92, .08), transparent 24%),
    linear-gradient(180deg, #f8faf5 0%, #f3f6f2 100%);
  font-family: "Funnel Sans", sans-serif;
  letter-spacing: .004em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--amk-primary);
}

a:hover {
  color: #0f284d;
}

.header {
  background: rgba(11, 33, 67, .95);
  box-shadow: 0 .8rem 2.2rem rgba(8, 20, 40, .08);
  backdrop-filter: blur(12px);
}

.header .logo .sitename {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 760;
  letter-spacing: -.03em;
}

.navmenu a,
.navmenu a:focus {
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  font-variant-caps: small-caps;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: #ffffff;
}

.navmenu .dropdown ul {
  background: #ffffff;
  border: var(--amk-border);
  border-radius: 1rem;
  box-shadow: var(--amk-shadow-soft);
}

.navmenu .dropdown ul a {
  color: var(--amk-dark);
}


.blog-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  background: var(--amk-accent);
  color: var(--amk-primary-deep);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.blog-header-cta:hover,
.blog-header-cta:focus {
  color: var(--amk-primary-deep);
  background: #d6b06a;
  transform: translateY(-1px);
  box-shadow: var(--amk-shadow-soft);
}

.mobile-index-cta {
  display: none;
}

.mobile-index-cta a,
.mobile-index-cta a:focus {
  justify-content: center;
  margin: .75rem 1rem .35rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: var(--amk-accent);
  color: var(--amk-primary-deep) !important;
  font-weight: 760;
  letter-spacing: .04em;
}

.mobile-index-cta a:hover,
.mobile-index-cta a:focus {
  background: #d6b06a;
  color: var(--amk-primary-deep) !important;
}

@media (max-width: 1199.98px) {
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
    background: rgba(8, 20, 40, .72);
  }

  .mobile-nav-active .navmenu > ul {
    display: flex !important;
    flex-direction: column;
    gap: .15rem;
    position: fixed;
    top: 5.25rem;
    right: 1rem;
    left: 1rem;
    bottom: auto;
    z-index: 10000;
    max-height: calc(100svh - 6.5rem);
    padding: .85rem 0;
    margin: 0;
    overflow-y: auto;
    border: 1px solid rgba(11, 33, 67, .12);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 3.5rem rgba(8, 20, 40, .22);
  }

  .mobile-nav-active .mobile-nav-toggle {
    z-index: 10001;
  }

  .blog-header-cta {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--amk-dark);
  }

  .navmenu li:hover > a,
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--amk-primary);
  }

  .mobile-index-cta {
    display: block;
  }
}
.mobile-nav-toggle {
  color: #ffffff;
}


.page-title {
  padding: 2rem 0 1.25rem;
  margin-bottom: 1rem;
  background: transparent;
}

.page-title h1 {
  color: var(--amk-primary);
  font-size: clamp(2rem, 1.4rem + 1.7vw, 3rem);
}

.breadcrumbs ol,
.breadcrumbs ol li,
.breadcrumbs a {
  color: #5d6975;
}

.section,
.blog-posts,
.blog-details,
.about,
.team {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

#trending-category {
  padding-top: clamp(3rem, 5vw, 5rem);
}

.section-title {
  margin-bottom: 1.8rem;
}

.section-title h2,
.section-title-container h2 {
  color: var(--amk-primary);
  font-size: 1.8rem;
}

.section-title p,
.who-we-are,
.post-meta .date {
  color: var(--amk-primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  font-variant-caps: all-small-caps;
}

.about .content,
.about-images,
.search-form-wrap {
  background: var(--amk-surface-paper);
  border: var(--amk-border);
  border-radius: 1.35rem;
  box-shadow: var(--amk-shadow-card);
}

.post-img {
  overflow: hidden;
}

.blog-posts .post-img,
.blog-posts .post-img img {
  border-radius: 0;
}

.about-images img {
  border-radius: 1.1rem;
}

.about-intro {
  color: #5d6975;
  max-width: 44rem;
  margin-top: .65rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-editorial-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.about-summary-card,
.about-info-card,
.about-impressum-card,
.editor-card {
  background: var(--surface-color);
  border: 0;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.about-summary-card {
  position: sticky;
  top: 6rem;
  padding: 2rem;
}

.about-summary-kicker,
.about-info-kicker,
.editor-role {
  color: var(--amk-primary);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-summary-card h2 {
  color: var(--amk-primary);
  font-size: clamp(1.3rem, 1.05rem + .55vw, 1.7rem);
  line-height: 1.24;
  margin: .65rem 0 1.15rem;
}

.about-summary-text {
  color: #5d6975;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-summary-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.35rem;
}

.about-summary-item {
  padding-top: .85rem;
  border-top: 1px solid rgba(11, 33, 67, .1);
}

.about-summary-item span {
  display: block;
  color: #6a7480;
  font-size: .82rem;
  margin-bottom: .2rem;
}

.about-summary-item strong {
  color: var(--amk-dark);
  font-weight: 680;
}

.about-info-card {
  height: 100%;
  padding: 2rem;
}

.about-info-card h3 {
  color: var(--amk-primary);
  font-size: clamp(1.25rem, 1.05rem + .45vw, 1.55rem);
  line-height: 1.25;
  margin: .55rem 0 1rem;
}

.about-manifest-card h3 {
  font-size: clamp(1.45rem, 1.15rem + .85vw, 2rem);
  letter-spacing: -.02em;
}

.about-info-card p,
.about-impressum-card p,
.editor-card p {
  color: #5d6975;
  line-height: 1.7;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-principle {
  display: block;
  padding: 1.5rem;
  background: var(--surface-color);
  border: 0;
  border-left: 4px solid var(--amk-accent);
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.about-principle span {
  display: block;
  margin-bottom: .85rem;
  color: var(--amk-accent);
  font-size: 1.3rem;
  font-weight: 780;
  line-height: 1;
}

.about-principle strong {
  display: block;
  color: var(--amk-primary);
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: .65rem;
}

.about-principle p {
  color: #5d6975;
  margin: 0;
  line-height: 1.62;
}

.about-impressum-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.about-side-lower-card {
  margin-top: 2rem;
}

.about-page .about-summary-card {
  position: static;
}

.editor-card {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding: 1.5rem;
}

.editor-card h4 {
  color: var(--amk-primary);
  margin: .15rem 0 .25rem;
  font-size: 1.15rem;
}

@media (max-width: 991.98px) {
  .about-summary-card,
  .about-info-card {
    padding: 1.5rem;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-summary-card {
    position: static;
  }

  .about-impressum-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

.post-date {
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  background: rgba(175, 22, 0, .92);
  color: #ffffff;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}

.readmore,
.more,
.post-entry .readmore {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--amk-dark);
  font-weight: 650;
  letter-spacing: .01em;
}

.readmore:hover,
.post-entry .readmore:hover {
  color: var(--amk-primary);
}

.footer h4,
.section-title h2,
.section-title-container h2 {
  color: var(--amk-primary);
}

.footer h4,
.footer h4 {
  color: var(--amk-primary);
  font-family: "Funnel Sans", sans-serif;
  font-weight: 680;
}

.footer {
  color: #b0b9ae;
  background: var(--amk-primary-deep);
}

.footer a,
.footer .sitename,
.footer .social-links a {
  color: #ffffff;
}

.footer-top {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.copyright {
  color: #b0b9ae;
  background: var(--amk-primary-deep);
}

.scroll-top {
  background: var(--amk-primary);
  color: #ffffff;
  box-shadow: var(--amk-shadow-soft);
}

.scroll-top:hover {
  background: #0f284d;
  color: #ffffff;
}

@media (max-width: 1199.98px) {
  .header .container {
    gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  .page-title {
    padding-top: 1.4rem;
  }

  .section,
  .blog-posts,
  .blog-details,
  .about,
  .team {
    padding-top: .75rem;
    padding-bottom: 2rem;
  }

  #trending-category {
    padding-top: 2.25rem;
  }
}

/* ARTICLE LINK AND HEADING FIXES */
.single-post-page .blog-details .article > h2.title,
.single-post-page .blog-details .article .title {
  color: var(--amk-primary) !important;
}

.single-post-page .blog-details .article .content > h3,
.single-post-page .blog-details .content h3 {
  color: var(--amk-primary) !important;
}

.single-post-page .blog-details .content a,
.single-post-page .blog-details .content a:visited {
  color: var(--amk-secondary) !important;
}

.single-post-page .blog-details .content a:hover,
.single-post-page .blog-details .content a:focus {
  color: color-mix(in srgb, var(--amk-secondary), black 14%) !important;
}

.single-post-page .blog-details .content .article-lead {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--amk-primary-deep);
  font-weight: 520;
  padding: 0;
  margin: .35rem 0 1.65rem;
}

.single-post-page .blog-details .article-image-caption {
  margin: .18rem 0 1.25rem;
  color: #6f7c8a;
  font-size: .78rem;
  font-style: italic;
  text-align: right;
}

.single-post-page .blog-details .post-img.has-caption {
  margin-bottom: .25rem;
}

.single-post-page .blog-details .content .article-image-float-right {
  float: right;
  width: 35%;
  max-width: 35%;
  margin: 0 0 1rem 2rem;
}

.single-post-page .blog-details .content .article-clear-float {
  clear: both;
}

@media (max-width: 991.98px) {
  .single-post-page .blog-details .content .article-image-float-right {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 1.5rem;
  }
}
