@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  --header-size: 125px;
  --scrollbar-height: 3px;
  --scrollbar-bg: #ddd;
  --scrollbar-progress-color: #0089f2;
}

/* SCROLLBAR */
/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f5f1;
  /* light background */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bg-main);
  /* green */
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-main);
}

/* .. */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Poppins';
  /* overflow-x: hidden; */
}

:root {
  --bg-main: #163F5A !important;
  --white: #F8FAFC;
  --gold: #f8d254;
  --darkgold: #f3bc08;
  --footer: #112B3C;
  --dark: #000;
  --gray: #e9ecef;
}

/* responsive font size */
/* Desktop */
body {
  font-size: 16px;

}



h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px !important;
}

p {
  font-size: 16px;
}

/* Tablet */
@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px !important;
  }

  p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 14px;
  }
}

/* li responsive font size */
li {
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 576px) {
  li {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  li {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  li {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  li {
    font-size: 14px;
  }
}



.bg-main {
  background-color: var(--bg-main) !important;
}

.bg-footer {
  background-color: var(--footer);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray);
}

.text-main {
  color: var(--main);
}

.text-heading {
  color: var(--bg-main);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--dark);
}

.text-list{
  color: #163F5A;
}

/* Cursor blink */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.gradient-title {

  background: linear-gradient(90deg, #163f5a, #5e4003, #163f5a, #163f5a);
  background-size: 300% 100%;
  text-align: left;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* underline animation */

.underline-title {
  position: relative;
  display: inline-block;
  /* ensures underline matches text width */
}

/* Underline */
.underline-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4em;
  /* responsive spacing relative to font size */

  height: 2px;
  width: clamp(40px, 50%, 90px);
  /* responsive underline length */

  background: linear-gradient(90deg, #163f5a, #a37e07);

  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1.2s ease forwards;
}

/* Animation */
@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

/* underline title center */

.underline-title-center {
  position: relative;
  display: inline-block;
  /* ensures underline matches text width */
}

/* Underline */
.underline-title-center::after {
  content: "";
  position: absolute;
  left: 8rem;
  bottom: -0.4em;
  /* responsive spacing relative to font size */

  height: 2px;
  width: clamp(40px, 50%, 90px);
  /* responsive underline length */

  background: linear-gradient(90deg, #163f5a, #a37e07);

  transform: scaleX(0);
  transform-origin: center;
  animation: underlineReveal 1.2s ease forwards;
}

/* Animation */
@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.header_img_ {
  height: 40vh;
  object-fit: cover;
}

/* navbar_toggle icon */

.offcanvas_hover {}


.offcanvas {
  background-color: var(--bg-main) !important;
}

.offcanvas .btn-close {
  padding: 10px;
  border-radius: 50%;
}

.offcanvas .btn-close:hover {
  background-color: rgba(22, 63, 90, 0.1);
}


.navbar-toggler {
  background-color: var(--darkgold) !important;
  font-size: 16px !important;
}

@media (max-width: 992px) {
  .navbar-toggler {
    font-size: 12px !important;
  }
}

/* INDEX PAGE */

.border-box {
  /* border: 3px solid #c4c8cb; */
  display: flex;
  align-items: center;
  /* width: 60%; */
}

/* .. */
.border-animate-infinite {
  animation: borderMove 3s infinite linear;
}

@keyframes borderMove {
  0% {
    border: 3px solid var(--gold);
  }

  100% {
    border: 3px solid var(--darkgold);
  }

}

/* . */

.section_heading {
  /* font-size: 25px; */
}

.dropdown-menu::after{
  
}

.dropdown-menu .dropdown_item_services {
  font-size: 14px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
  font-size: 15px;
  /* margin: 0px 10px; */
  margin: 0px 7px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--gold);
}

.footer ul {
  font-size: 15px;
}

.nav-link.active {
  color: #f8d254;
  font-weight: 500;
  border-bottom: 2px solid var(--gold);
}

@media (max-width: 320px) {
  .navbar-brand {
    font-size: 17px !important;
  }

  .navbar_title_responsive {
    display: flex;
    justify-content: center !important;
  }

  .navbar_logo_responsive {
    width: 45px;
    height: 40px;
  }
}

/* ... */

/* .. */

.about_nav,
.services_nav,
.home_nav,
.security_nav,
.team_nav {
  border-bottom: 1px solid var(--gold);
}

.home_nav {
  /* background: linear-gradient(358deg, #f3c156 19%, #163F5A 20%); */
  background: var(--bg-main);
}

.more-text {
  display: none;
}

.btn-hover-more:hover {
  transform: scale(1.1);

}

.btn-hover-more {
  border-bottom: 2px solid blue !important;
  border: none;
  font-weight: 500;
  color: blue;
}

.our-team-section {
  position: relative;
  /* padding-top: 40px; */
  padding-bottom: 40px;
}

.our-team-section:before {
  position: absolute;
  top: -0;
  left: 0;
  content: " ";
  background: url(img/service-section-bottom.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.our-team {
  padding: 30px 0 40px;
  background: #f9f9f9;
  /* border: 2px solid rgba(128, 128, 128, 0.651); */
  text-align: center;
  overflow: hidden;
  position: relative;
  border-bottom: 5px solid #00325a;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  /* box-shadow: 0 8px 20px rgba(22, 63, 90, 0.18); */
  /* height: 460px; */
  box-shadow: inset -2px 2px hsl(0 0 100% / 1), 0px 10px 20px hsl(0 0 0 / .25) !important;
}

.our-team:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(22, 63, 90, 0.35) !important;
}

.our-team:hover {
  border-bottom: 5px solid #2f2f2f;
}

.our-team .pic {
  display: inline-block;
  width: 130px;
  height: 130px;
  /* margin-bottom: 50px; */
  z-index: 1;
  position: relative;
}

.our-team .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* background: #00325a; */
  background: #2f2f2f;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 1;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .pic:before {
  height: 100%;
  background: #2f2f2f;
}

.our-team .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s linear 0s;
}

.our-team:hover .pic:after {
  /* background: #7ab92d; */
  background: #e39b21;
}

.our-team .pic img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
  position: relative;
  z-index: 2;
}

.our-team:hover .pic img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .team-content {
  margin-bottom: 30px;
}

.our-team .title {
  font-size: 22px;
  font-weight: 700;
  color: #4e5052;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.our-team .post {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #2f2f2f;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
  color: #2f2f2f;
  background: #f7f5ec;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}

.show-more-btn{
  font-size: 14px;
  background: transparent;
}

/* ABOUT PAGE */

.img-hover-effect {

  --border: 10px;
  /* the border thickness*/
  --offset: 20px;
  /* control the offset*/
  --gap: 5px;
  /* the gap on hover */

  --_c: var(--darkgold) var(--border), #0000 0 calc(100% - var(--border)), var(--darkgold) 0;
  --_o: calc(3*var(--offset));
  padding:
    calc(var(--gap) + var(--border)) calc(var(--gap) + var(--border) + var(--offset)) calc(var(--gap) + var(--border) + var(--offset)) calc(var(--gap) + var(--border));
  background:
    linear-gradient(var(--_c)) var(--_o) var(--_o),
    linear-gradient(90deg, var(--_c)) var(--_o) var(--_o);
  background-size: calc(100% - var(--_o)) calc(100% - var(--_o));
  background-repeat: no-repeat;
  filter: grayscale(.4);
  transition: .5s;
  cursor: pointer;
}

.img-hover-effect:hover {
  background-position: 0px 0px;
  background-size: calc(100% - var(--offset)) calc(100% - var(--offset));
  filter: grayscale(0);
}



/* SERVICES PAGE */
.service-img {
  border-radius: 16px;
  height: 400px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}

.services_card {
  border-top: 3px solid var(--bg-main);
  border-bottom: 3px solid var(--bg-main);
  border-left: 1px solid var(--bg-main);
  border-right: 1px solid var(--bg-main);
  background: #f8fafc8c;
}

.services_section {
  background: linear-gradient(#f8f9fa, #e2e2e245), url('https://img.freepik.com/free-vector/futuristic-techno-low-poly-mesh-lines-background-data-communication_1017-60106.jpg?semt=ais_hybrid&w=740&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.seurity_content_para {
  font-size: 13px;
}

/* ... */
.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}


.advertisers-service-sec span {
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 3rem 3rem;
  border-radius: 18px !important ;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 5px solid var(--bg-main);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.advertisers-service-sec .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.services_card_section .col {
  position: relative;
  /* Parent for absolute positioning */
  margin-top: 40px;
  /* Optional spacing */
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: visible;
  /* Ensure card content doesn't hide children */
}

.icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.advertisers-service-sec .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#0dcaf0, var(--bg-main));
  /* blue gradient */
  transform: scaleY(0);
  /* start hidden */
  transform-origin: top;
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.advertisers-service-sec .service-card:hover::before {
  transform: scaleY(1);
  border-radius: 15px;
}

.advertisers-service-sec h3 {
  font-size: 18px !important;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1.5em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #575a7b;
  /* line-height: 1.6;
  letter-spacing: 0.03em; */
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #e9ecef;
  color: var(--bg-main);
  border-bottom: 4px solid #163f5a;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
  background-color: #fff;
  box-shadow:
    0 0 15px rgba(241, 241, 241, 0.911),
    0 0 30px var(--bg-main);
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}

/* ... */

/* SECURITY SECTION */
.sub-service_img {
  box-shadow: inset -2px 2px hsl(0 0 100% / 1), -20px 20px 40px hsl(0 0 0 / .25) !important;
  border-radius: 1rem;
}


.security_section {
  background: linear-gradient(#f8f9fae8, #e2e2e200), url('https://img.freepik.com/free-vector/halftone-style-clean-modern-background-with-smooth-blend_1017-53613.jpg?t=st=1769851696~exp=1769855296~hmac=1b422f16cec405aef400310c4d75fd98707de677412dfb64730c77d894fa1559');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 992px) {
  .security_card {
    height: 300px;
  }
}

.security_card {
  border-top: 2px solid var(--bg-main);
  border-bottom: 2px solid var(--bg-main);
  box-shadow: inset -2px 2px hsl(0 0 100% / 1), -20px 20px 40px hsl(0 0 0 / .25) !important;
  /* background-image: linear-gradient(to bottom left, #e0e4e5, #f2f6f9); */
  border-radius: 1rem !important;
}

.security_card:hover {
  transform: translateY(-3px);

  /* box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(243, 213, 116, 0.25) !important; */
}





/*
border-animation
.security_card{
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.security_card::before, .security_card::after{
  content:"";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--bg-main);
}

.security_card:hover::before, .security_card:hover::after{
  width: 100%;
}

.security_card::before, .security_card::after{
  transition-delay: 0.2s;
}

.security_card::before{
  right: 0;
  top: 0;
}

.security_card::after{
  left: 0;
  bottom: 0;
} */

/* Contact Us */

.contact_btn {
  background-color: var(--gold);
  color: #000;
  border: 1px solid var(--bg-main);
}

.contact_btn:hover {
  background-color: var(--darkgold);
  transform: translateY(2);
  color: black;

}

/* Gallery photos */

.gallery_img {
  --g: 5px;
  /* the gap */
  --b: 8px;
  /* border thickness*/
  --c: #669706;
  /* the color */


  padding: calc(var(--g) + var(--b));
  --_c: #0000 0 25%, var(--c) 0 50%;
  --_g1: repeating-linear-gradient(90deg, var(--_c)) repeat-x;
  --_g2: repeating-linear-gradient(180deg, var(--_c)) repeat-y;
  background:
    var(--_g1) var(--_p, 25%) 0, var(--_g2) 0 var(--_p, 125%),
    var(--_g1) var(--_p, 125%) 100%, var(--_g2) 100% var(--_p, 25%);
  background-size: 200% var(--b), var(--b) 200%;
  cursor: pointer;
  filter: grayscale(50%);
  transition: .3s;
}

.gallery_img:hover {
  --_p: 75%;
  filter: grayscale(0%);
}



/* ... */
/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* IMAGE TRANSITION */
.lightbox img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 12px;
  transition: transform .4s ease, opacity .4s ease;
  animation: fadeZoom .4s ease;
}

/* BUTTONS */
.close-btn {
  position: absolute;
  top: 95px;
  right: 30px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 26px;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, .3);
  transform: rotate(90deg);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* ANIMATION */
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* PREVENT BODY SCROLL */
/* body.no-scroll {
            overflow: hidden;
        } */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* IMAGE WRAPPER */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}

/* DARK OVERLAY */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity .3s ease;
}

/* ZOOM ICON */
.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  font-size: 34px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .3s ease;
  z-index: 2;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  /* transform: scale(1.08); */
}

.gallery-item:hover::after {
  /* opacity: 1; */
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ARTICLE PAGE */

 /* Section Background */
    .article_content {
      background: linear-gradient(135deg, #f8fbff, #eef5ff);
    }

    /* Title */
    .article-title {
      font-weight: 700;
      font-size: 32px;
      background: linear-gradient(90deg, #01836d, #00b894);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .title-underline {
      width: 80px;
      height: 4px;
      margin: 10px auto 0;
      background: linear-gradient(90deg, #01836d, #00b894);
      border-radius: 50px;
    }

    /* Card */
    .article-card {
      background: #fff;
      border-radius: 15px;
      border: 1px solid #80808059;
      overflow: hidden;
      transition: 0.4s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .article-card:hover .article-body h5 a{
      text-decoration-color: var(--bg-main) !important;
    }

    /* Image */
    .article-img {
      overflow: hidden;
    }

    .article-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .article-card:hover .article-img img {
      transform: scale(1.08);
    }

    /* Body */
    .article-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .article-body h5 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .article-body h5 a {
      text-decoration: none;
      color: #222;
      transition: 0.3s;
      font-size: 18px;
    }

    .article-body h5 a:hover {
      color: var(--bg-main);
    }

    .article-body p {
      font-size: 15px;
      color: #666;
      flex-grow: 1;
    }

    /* Button */
    .read-btn {
      text-decoration: none;
      font-weight: 600;
      color: var(--bg-main);
      transition: 0.3s;
      background: none;
      border: none;
      text-align: end;
      font-size: 14px;
    }

    .read-btn:hover {
      letter-spacing: 1px;
      color: var(--bg-main);
      background: none;
      border: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .article-title {
        font-size: 24px;
      }

      .article-img img {
        height: 200px;
      }
    }