/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
/*=====================================
=            MEDIA QUERIES            =
=====================================*/
/*=====  End of MEDIA QUERIES  ======*/
/*==============================
=            MIXINS            =
==============================*/
/*=====  End of MIXINS  ======*/
/*========================================
=            EXTEND SELECTORS            =
========================================*/
/*=====  End of EXTEND SELECTORS  ======*/
/* PROJECT MIXINS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.ios input,
.safari input {
  opacity: 1;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-primary {
  background-color: #b92d21;
  color: #fff;
}

.btn-primary:hover {
  background-color: #8f231a;
}

.btn-light {
  background-color: #fff;
  color: #b92d21;
}

.btn-light:hover {
  background-color: #e6e6e6;
}

.site-header {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo img {
  height: 48px;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.desktop-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.desktop-nav .nav-links a {
  font-weight: 500;
  font-size: 1.125rem;
}

.desktop-nav .nav-links .current-menu-item a,
.desktop-nav .nav-links a:hover,
.desktop-nav .nav-links a.active {
  color: #b92d21;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  padding: 0.5rem;
}

.mobile-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mobile-controls .menu-btn {
    display: none;
  }
}
.mobile-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.search-bar {
  padding: 1rem 0;
  display: none;
}

.search-bar.active {
  display: block;
}

.search-bar .search-input {
  position: relative;
}

.search-bar .search-input input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border-radius: 4px;
  border: 1px solid #eaeaea !important;
  font-size: 1rem;
}

.search-bar .search-input input:focus {
  outline: none;
  border-color: #eaeaea;
}

.search-bar .search-input button {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #eaeaea;
  display: none;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.mobile-nav .nav-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.mobile-nav .nav-links a:hover, .mobile-nav .nav-links a.active {
  color: #0077B5;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 0 0 3rem;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 0;
  }
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .hero-grid {
    height: 100%;
  }
}

.featured-article {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.featured-article .article-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .featured-article .article-image {
    height: calc(100dvh - 95px);
  }
}

.featured-article .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-article .article-image .article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.featured-article .container {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  left: calc(50% - 660px);
}

@media screen and (max-width: 1320px) {
  .featured-article .container {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
  }
}
.featured-article .article-overlay h1 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.featured-article .article-overlay p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: #fff;
}

.featured-article .article-overlay .article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.latest-sidebar {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 12px;
}

.latest-sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eaeaea;
}

.latest-sidebar .sidebar-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.latest-sidebar .sidebar-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.latest-sidebar .sidebar-article img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.latest-sidebar .sidebar-article .sidebar-content .article-title {
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-sidebar .sidebar-article .sidebar-content .article-title:hover {
  color: #b92d21;
}

.latest-sidebar .sidebar-article .sidebar-content .article-date {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.section-header .view-all {
  color: #b92d21;
  font-weight: 500;
}

.section-header .view-all:hover {
  text-decoration: underline;
}

.category-tag {
  display: inline-block;
  background-color: #b92d21;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .article-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.article-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.article-card:hover .article-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.article-card .article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.article-card .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.article-card .article-image .category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.article-card .article-content {
  padding: 1.5rem;
}

.article-card .article-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-card .article-content h3:hover {
  color: #b92d21;
}

.article-card .article-content p {
  color: #666;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .article-content .article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
}

.article-card .article-content .article-meta .author {
  font-weight: 500;
}

.article-card .article-content .article-meta .date {
  color: #666;
}

.categories {
  background-color: #f5f5f5;
}

.categories h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.category-card {
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.category-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover h3 {
  color: #b92d21;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.category-card p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0;
}

.subscribe {
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.subscribe h2 {
  margin-bottom: 1rem;
}

.subscribe p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.subscribe .subscribe-form {
  max-width: 500px;
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .subscribe .subscribe-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.subscribe .subscribe-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
}

.subscribe .subscribe-form input:focus {
  outline: none;
}

.subscribe .disclaimer {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}

.site-footer {
  background-color: #f5f5f5;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-content img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-content svg {
  width: 200px;
}

.footer-content p {
  color: #666;
}

.footer-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.footer-content ul a {
  color: #666;
}

.footer-content ul a:hover {
  color: #b92d21;
}

.footer-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #eaeaea;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.footer-form input:focus {
  outline: none;
  border-color: #b92d21;
}

.footer-form button {
  background-color: #b92d21;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.footer-form button:hover {
  background-color: #8f231a;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #666;
  font-size: 0.875rem;
}

.footer-links ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-bottom .footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .footer-legal a:hover {
  color: #b92d21;
}

.page-header {
  background-color: #f5f5f5;
  padding: 2rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-header .filter-container {
  margin-top: 2rem;
}

.page-header .category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-header .filter-btn, .page-header .tag-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-header .filter-btn.active, .page-header .tag-btn.active {
  background-color: #b92d21;
  color: #fff;
  border-color: #b92d21;
}

.page-header .filter-btn {
  background-color: #fff;
  border: 1px solid #eaeaea;
  font-weight: 500;
}

.page-header .filter-btn:hover:not(.active) {
  background-color: #e0e0e0;
}

.page-header .tag-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}

.page-header .tag-btn {
  background-color: #fff;
  border: 1px solid #eaeaea;
  font-size: 0.875rem;
}

.page-header .tag-btn:hover:not(.active) {
  background-color: #e0e0e0;
}

.page-header .tag-btn.active {
  background-color: #b92d21;
  color: #fff;
}

.articles-content {
  padding-top: 2rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #666;
  margin-bottom: 1.5rem;
}

.single-article {
  background-color: #f5f5f5;
}

.article-detail .article-header {
  background-color: #f5f5f5;
  padding: 3rem 0;
  text-align: center;
}

.article-detail .article-header .category-tag {
  margin-bottom: 1.5rem;
}

.article-detail .article-header .article-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-detail .article-header .article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}

.article-detail .article-header .article-meta .author-info {
  text-align: center;
}

.article-detail .article-header .article-meta .author-info .author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.article-detail .article-header .article-meta .author-info .article-date {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.article-detail .article-featured-image {
  padding: 2rem 0;
}

.article-detail .article-featured-image img {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-detail .article-content {
  padding: 2rem 0;
}

.article-detail .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.article-detail .article-content .content-wrapper .article-lead {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 2rem;
}

.article-detail .article-content .content-wrapper h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-detail .article-content .content-wrapper p {
  line-height: 1.8;
}

.article-detail .article-content .content-wrapper .article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
}

.article-detail .article-content .content-wrapper .article-tags .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #f5f5f5;
  border-radius: 999px;
  font-size: 0.875rem;
}

.article-detail .article-content .content-wrapper .article-share {
  margin-top: 2rem;
  text-align: left;
}

.article-detail .article-share h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: left !important;
  display: block;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn:hover.twitter {
  color: #1DA1F2;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn:hover.facebook {
  color: #4267B2;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn:hover.linkedin {
  color: #0077B5;
}

.article-detail .article-content .content-wrapper .article-share .share-buttons .share-btn:hover.email {
  color: #b92d21;
}

.article-detail .article-content .content-wrapper .author-bio {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.article-detail .article-content .content-wrapper .author-bio h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-detail .article-content .content-wrapper .author-bio p {
  color: #666;
  margin-bottom: 0;
}

.related-articles {
  background-color: #f5f5f5;
}

.related-articles h2 {
  text-align: left !important;
  margin-bottom: 2.5rem;
}

.footer-socialmedia ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-socialmedia ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer-socialmedia ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-primary {
  background-color: #3b82f6;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}

.btn-light {
  background-color: #fff;
  color: #3b82f6;
}
.btn-light:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}

.site-header {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  margin: 20px 0;
}
.logo svg {
  height: 48px;
}

.desktop-nav {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.desktop-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.desktop-nav .nav-links a {
  font-weight: 500;
  font-size: 1.125rem;
}
.desktop-nav .nav-links a:hover, .desktop-nav .nav-links a.active {
  color: #b92d21;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  padding: 0.5rem;
}

.mobile-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.mobile-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.search-bar {
  padding: 1rem 0;
  display: none;
}
.search-bar.active {
  display: block;
}
.search-bar .search-input {
  position: relative;
}
.search-bar .search-input input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  font-size: 1rem;
}
.search-bar .search-input input:focus {
  outline: none;
  border-color: #3b82f6;
}
.search-bar .search-input button {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #eaeaea;
  display: none;
}
.mobile-nav.active {
  display: block;
}
.mobile-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.mobile-nav .nav-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.mobile-nav .nav-links a:hover, .mobile-nav .nav-links a.active {
  color: #3b82f6;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.article-image .category-tag {
  position: absolute;
  top: 1rem;
}

.article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eaeaea;
}
.article-tags .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #f5f5f5;
  border-radius: 999px;
  font-size: 0.875rem;
}

.share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.share-buttons .share-btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.share-buttons .share-btn:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.share-buttons .share-btn:hover.twitter {
  color: #1DA1F2;
}
.share-buttons .share-btn:hover.facebook {
  color: #4267B2;
}
.share-buttons .share-btn:hover.linkedin {
  color: #0077B5;
}
.share-buttons .share-btn:hover.email {
  color: #3b82f6;
}

.related-articles {
  background-color: #f5f5f5;
}
.related-articles h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.filter-btn.active,
.tag-btn.active {
  background-color: #primary-color;
  color: white;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
}

.pagination .current {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.banner-btn {
  background: none;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 10px 20px;
  min-width: 160px;
}
.banner-btn:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.about-story {
  padding: 4rem 0;
}
.about-story .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .about-story .about-grid {
    grid-template-columns: 3fr 2fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about-story .about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.about-story .about-content p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}
.about-story .about-content p:last-child {
  margin-bottom: 0;
}
.about-story .about-image img {
  width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-values {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.about-values .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.about-values .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-values .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-values .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-values .value-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.about-values .value-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.about-values .value-card .value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 1.5rem;
}
.about-values .value-card .value-icon i {
  color: #3b82f6;
  font-size: 24px;
}
.about-values .value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.about-values .value-card p {
  color: #666;
  margin-bottom: 0;
}

.about-team {
  padding: 4rem 0;
}
.about-team .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.about-team .team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-team .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-team .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-team .team-member {
  text-align: center;
}
.about-team .team-member .member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid #f5f5f5;
}
.about-team .team-member .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-team .team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-team .team-member .member-role {
  color: #000;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-team .team-member .member-bio {
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.about-stats {
  background-color: black;
  color: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid #544e4e;
}
.about-stats .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-stats .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-stats .stat-item {
  text-align: center;
}
.about-stats .stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.about-stats .stat-item p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.blog-featured {
  padding: 3rem 0;
}
.blog-featured .featured-post {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .blog-featured .featured-post {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-featured .featured-post .featured-image {
  position: relative;
  height: 300px;
}
@media (min-width: 992px) {
  .blog-featured .featured-post .featured-image {
    height: 100%;
  }
}
.blog-featured .featured-post .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-featured .featured-post .featured-image .category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.blog-featured .featured-post .featured-content {
  padding: 2rem;
}
.blog-featured .featured-post .featured-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-featured .featured-post .featured-content h2 {
    font-size: 2rem;
  }
}
.blog-featured .featured-post .featured-content .post-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.blog-featured .featured-post .featured-content .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.blog-featured .featured-post .featured-content .post-meta .author {
  font-weight: 500;
}
.blog-featured .featured-post .featured-content .post-meta .date {
  color: #666;
}

.blog-posts {
  padding: 3rem 0;
}
.blog-posts .section-header {
  margin-bottom: 2rem;
}
.blog-posts .section-header h2 {
  margin-bottom: 1.5rem;
}
.blog-posts .blog-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
.blog-posts .blog-categories .category-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid #eaeaea;
  font-weight: 500;
}
.blog-posts .blog-categories .category-btn:hover:not(.active) {
  background-color: #e0e0e0;
}
.blog-posts .blog-categories .category-btn.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.blog-posts .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .blog-posts .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-posts .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-posts .blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.blog-posts .blog-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.blog-posts .blog-card .blog-image {
  height: 200px;
}
.blog-posts .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-posts .blog-card .blog-content {
  padding: 1.5rem;
}
.blog-posts .blog-card .blog-content .post-category {
  display: inline-block;
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.blog-posts .blog-card .blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-posts .blog-card .blog-content h3 a:hover {
  color: #3b82f6;
}
.blog-posts .blog-card .blog-content p {
  color: #666;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-posts .blog-card .blog-content .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
  color: #666;
}
.blog-posts .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.blog-posts .pagination .pagination-btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-posts .pagination .pagination-btn:hover:not(.active) {
  background-color: #f5f5f5;
}
.blog-posts .pagination .pagination-btn.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.blog-posts .pagination .pagination-ellipsis {
  padding: 0 0.5rem;
}
.blog-posts .pagination .pagination-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #eaeaea;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-posts .pagination .pagination-next:hover {
  background-color: #f5f5f5;
}
.blog-posts .pagination .pagination-next i {
  width: 16px;
  height: 16px;
}

.contact-content {
  padding: 4rem 0;
}
.contact-content .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .contact-content .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}
.contact-content .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-content .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-content .info-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-content .info-card .info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.25rem;
}
.contact-content .info-card .info-icon img {
  width: 20px;
}
.contact-content .info-card .info-icon i {
  color: #3b82f6;
}
.contact-content .info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.contact-content .info-card p {
  color: #666;
  margin-bottom: 0.75rem;
}
.contact-content .info-card p:last-child {
  margin-bottom: 0;
}
.contact-content .info-card a {
  color: #3b82f6;
}
.contact-content .info-card a:hover {
  text-decoration: underline;
}
.contact-content .contact-form-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-content .contact-form-container h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.contact-content .contact-form-container > p {
  color: #666;
  margin-bottom: 1.5rem;
}
.contact-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-content .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-content .contact-form .form-group input[type=text],
.contact-content .contact-form .form-group input[type=email],
.contact-content .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  font-size: 1rem;
}
.contact-content .contact-form .form-group input[type=text]:focus,
.contact-content .contact-form .form-group input[type=email]:focus,
.contact-content .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}
.contact-content .contact-form .form-group textarea {
  resize: vertical;
}
.contact-content .contact-form .form-group .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
}
.contact-content .contact-form .form-group .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-content .contact-form .form-group .checkbox-container input:checked ~ .checkmark {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.contact-content .contact-form .form-group .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.contact-content .contact-form .form-group .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-content .contact-form .form-group .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-content .contact-form .wpcf7-submit,
.contact-content .contact-form .btn-primary {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  border-radius: 4px;
  width: 100%;
  padding: 0.875rem;
  background-color: #3b82f6;
  color: #fff;
}
.contact-content .contact-form .wpcf7-submit:hover,
.contact-content .contact-form .btn-primary:hover {
  background-color: #2563eb;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.contact-map {
  padding-bottom: 4rem;
}
.contact-map .map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-map .map-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.faq .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq .faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.faq .faq-item p {
  color: #666;
  margin-bottom: 0;
}
.faq .faq-item p a {
  color: #3b82f6;
}
.faq .faq-item p a:hover {
  text-decoration: underline;
}

.wpforms-container {
  width: 100% !important;
  margin: 0 !important;
}
.wpforms-container .wpforms-form {
  width: 100% !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wpforms-container .wpforms-field-label {
  display: none !important;
}
.wpforms-container .wpforms-field-container {
  width: 70%;
}
.wpforms-container .wpforms-field-container .wpforms-field-medium {
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
}
.wpforms-container .wpforms-submit-container {
  width: 30%;
  margin-top: 9.5px !important;
}
.wpforms-container .wpforms-submit-container .wpforms-submit {
  width: 100%;
  height: 42px;
  border-radius: 0 !important;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}
.wpforms-container .wpforms-submit-container .wpforms-submit:hover {
  background: #fff !important;
  color: #000 !important;
}

.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
  padding: 9px 0 !important;
}

/* Swiper navigation buttons styled like .banner-btn but square */
.swiper-button-next,
.swiper-button-prev {
  background: none;
  border: 1px solid #fff;
  border-radius: 0;
  width: 48px !important;
  height: 48px !important;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px !important;
  color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #fff;
  color: #000 !important;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #000 !important;
}

.swiper-button-next {
  right: 20px !important;
  bottom: 40px !important;
  top: auto !important;
}

@media screen and (min-width: 1200px) {
  html .swiper-button-next {
    right: calc(50% - 600px) !important;
  }
  html .swiper-button-prev {
    right: calc(50% - 540px) !important;
  }
}
.swiper-button-prev {
  right: 90px !important;
  bottom: 40px !important;
  top: auto !important;
  left: auto !important;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 15px auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 15px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
/** Captions */
/** Text meant only for screen readers */
