
 @import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@300;400;500;600;700&display=swap');

 @import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap');

 @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@300;400;500;600;700&display=swap');


.recent-blogs {
   width: 100%;
padding: 60px 6%;
  background: #ffffff;
  font-family: 'Schibsted Grotesk', sans-serif;
}

/*.container {
  width: 100%;
  max-width: 92%;
  margin: auto;
}*/

.section-title {
  text-align: center;
  font-size: 58px;
    font-weight: 400;
    color: #040C1F;
    font-family: 'Agdasima', sans-serif;
  margin-bottom: 24px;
}

/* Tabs */
.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.blog-tabs .tab {
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-family: 'Schibsted Grotesk', sans-serif;
}

.blog-tabs .tab.active {
  background: #FFFDED;
  border: 3px solid #FECE51!important;
  color: #040C1F;
}

.tab-content {
  display: none;
  animation: fadeUp 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Content */
.blog-content {
  padding: 22px;
}

.blog-content .date {
  font-size: 12px;
  color: #525252;
  display: block;
  margin-bottom: 6px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 400px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: 'Schibsted Grotesk', sans-serif;
  color:#040C1F;
}

.blog-content p {
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 14px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 400px;
}

/* Read More */
.read-more {
  font-size: 13px;
  font-weight: 500;
  color: #042067;
  text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
}

.read-more img{

  width: 24px!important;
    height: 24px!important;
    object-fit: none !important;
    display: inline!important;
}
.read-more span {
  margin-left: 4px;
}

/* Layout Variants */
.blog-card.large img {
  height: 280px;
  object-fit: cover;
}

.blog-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card.horizontal {
  display: flex;
  gap: 16px;
}

.blog-card.horizontal img {
  width: 180px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.horizontal {
    flex-direction: column;
  }

  .blog-card.horizontal img {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .blog-tabs {
    gap: 10px;
  }

  .blog-tabs .tab {
    font-size: 11px;
    padding: 6px 8px;
    white-space: normal;
    text-align: center;
    flex: 1;               /* 👈 force equal width */
  }
}


/*single blog*/


.blog-detail-section {
  width: 100%;
padding: 60px 20px;
  background: #ffffff;
}

.blog-detail-section .blog-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: start;
}


.blog-detail-section .blog-content {
     padding: 0px; 
}
/* Left Content */
.blog-detail-section .blog-content h2 {
  font-size: 58px;
  font-weight: 400;
    color: #040C1F;
    font-family: 'Agdasima', sans-serif;
  margin-bottom: 16px;
  }

.blog-detail-section .blog-content p {
  font-size: 18px!important;
  line-height: 1.8;
  color: #525252;
  margin-bottom: 14px;
  font-weight: 400;
  font-family: 'Schibsted Grotesk', sans-serif;
}


/* Sidebar */
.blog-sidebar {
  background: linear-gradient(180deg, #0b1a3d, #08122c);
  color: #fff;
  padding: 28px;
  border-radius: 12px;
  height: 500px;
}

.blog-sidebar {
  position: relative;
  overflow: hidden;
}

/* Curve Shape */
.blog-sidebar::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140%;
  height: 160px;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0) 70%
  );
  border-radius: 50%;
}

.blog-sidebar h4 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;

  font-family: 'Agdasima', sans-serif;
}

.blog-sidebar p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #dcdcdc;
  font-weight: 400;
  font-family: 'Schibsted Grotesk', sans-serif;
}

/* Subscribe Form */
.subscribe-form {
 /* display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
*/}

.subscribe-form input {
 display: inline-block;
    background: #ffffff;
    color: #0b3c91;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Instrument Sans', sans-serif;
}

.subscribe-form button {
  margin-top: 10px;
  background: #081858;
  border: none;
  color: #fff;
  width: 50px;
  height:50px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
}


@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 30px;
  }
}




.podcast-slider .blog-card.horizontal img {
  width: 35%!important;
  object-fit: cover;
}

.podcast-slider .blog-card.horizontal {
    display: flex;
    gap: 50px!important;
}


.podcast-slider .btn-area img{
  width:auto;%!important;
}

.podcast-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}


.podcast-dots .owl-dot {
    width: 22px;
    height: 4px;
    background: #dcdcdc;
    margin-right: 6px;
    border-radius: 2px;
    transition: 0.3s;
}

.podcast-dots .owl-dot.active {
    background: #0d2c7d; 
}


.podcast-arrows {
    display: flex;
    gap: 10px;
}

.podcast-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.podcast-arrows button:hover {
    background: #0d2c7d;
    color: #fff;
    border-color: #0d2c7d;
}



.podcast-wrapper {
  width:100%;
/*    max-width: 1100px;*/
/*    margin: auto;*/
}

/* Podcast item */
/*.podcast-item {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.podcast-item img {
    width: 35%!important;
    border-radius: 12px;
}

.podcast-content h4 {
    font-size: 40px;   
    font-weight: 400;
    color: #040C1F;
    font-family: 'Agdasima', sans-serif;
    margin-bottom: 10px;
}

.podcast-content p {
    font-size: 18px;
    color: #525252;
    margin-bottom: 15px;
     font-family: 'Instrument Sans', sans-serif;
}

.podcast-content a {
   font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    color: #042067;
    text-decoration: none;
}*/

/* Controls */
.podcast-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* Dots */
.podcast-dots .owl-dot {
    width: 24px;
    height: 4px;
    background: #d9d9d9;
    margin-right: 6px;
    border-radius: 2px;
    transition: 0.3s;
}

.podcast-dots .owl-dot.active {
    background: #0d2c7d;
}

/* Arrows */
.podcast-arrows {
    display: flex;
    gap: 12px;
}

.podcast-arrows button {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.podcast-arrows button:hover {
    background: #0d2c7d;
    color: #fff;
    border-color: #0d2c7d;
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-item {
        flex-direction: column;
        text-align: center;
    }

    .podcast-item img {
        width: 100%;
    }
}



/* Owl fix */
.owl-stage {
    display: flex;
}

/* CARD */
.podcast-item {
    display: flex !important;
    gap: 40px;
    background: #fff;
/*    padding: 15px;*/
    border-radius: 14px;
/*    align-items: center;*/
/*    max-width: 1100px;*/
/*    margin: auto;*/
/*min-height: 280px;*/
}

/* IMAGE */
.podcast-thumb {
    flex: 0 0 500px;
}

.podcast-thumb img {
    width: 35%;
    border-radius: 12px;
    display: block;
}

/* CONTENT */
.podcast-content {
     flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
/*    height: 100%;*/
    padding: 40px 40px 30px 0px;

}

/* HEADPHONE */
.podcast-headphone {
    position: absolute;
    top: 40px;
    right: 50px;
}

.podcast-headphone img {
    width: 50px!important;
    opacity: 0.5;
}

/* TEXT */
.podcast-content h4 {
    font-size: 35px;
    margin-bottom: 12px;
     font-weight: 400;
    color: #040C1F;
    font-family: 'Agdasima', sans-serif;
}

.podcast-content p {
    color: #525252;
     font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    
    max-width: 520px;
}

/* BOTTOM ROW */
.podcast-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  margin-top: auto;
/*    max-width: 520px;*/
}

.spotify-link {
    font-weight: 600;
    font-size: 14px;
      font-family: 'Instrument Sans', sans-serif;
    color: #042067;
    text-decoration: none;
    text-transform:uppercase;
}

.spotify-logo {
    width: 50px!important;
}

/* REMOVE ORANGE BACKGROUND IF EXISTS */
.owl-item,
.podcast-slider {
    background: transparent !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .podcast-content {
   
    padding: 20px;

}


.podcast-headphone {
    position: absolute;
    top: 0px;
    right: 0px;
}

  .podcast-thumb {
    flex: auto;
}

    .podcast-item {
        flex-direction: column;
        text-align: left;
    }

    .podcast-bottom {
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .podcast-bottom {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 34px!important;
        text-align: center;
        padding-left: 20px;
    }
  }

  .blog-actions {
  display: flex;
  align-items: center;
/*  gap: 15px;*/
    justify-content: space-between;
}

.read-more{
  text-transform:uppercase!important;
}

.youtube-link img {
  width: 50px!important;
  height: auto!important;
  cursor: pointer;

}
