.blog-hero {
  display: flex;
  gap: 25px;
  margin-bottom: 3rem;
}

.hero-img {
  max-height: 250px;
  width: 75%;
  height: auto;
  /* overflow: hidden; */
  /* border-radius: 10px; */
  box-sizing: border-box;
  position: relative;
}

.hero-img img:nth-child(1) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.hero-logo{
  position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100px;
    height: 100px;
}

.hero-ads-img {
  width: 25%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-ads-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 767px) {
  .blog-hero {
    gap: 16px;
    margin-bottom: 1rem;
  }
  
  .hero-logo{
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 425px){
  .blog-hero{
    flex-direction: column;
  }
  
  .hero-img {
  width: 100%;
  max-height: auto;
}

.hero-ads-img {
  width: 100%;
}

.hero-ads-img img {
  margin-top: 1rem;
}

  .hero-logo{
    width: 40px;
    height: 40px;
  }
}

.article-section {
    color: #000000;
    margin-bottom: 3rem;
}

.article-container {
    margin: auto;
}

.article-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 48px;
    font-weight: 500;
    /* margin-bottom: 40px; */
    text-transform: capitalize;
    line-height: 120%;
    width: 40%;
}

.featured-art-img {
    /* width: 50%; */
    height: 100px;
    overflow: hidden;
}

.featured-art-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* GRID */
.article-grid {
    display: flex;
    flex-wrap: wrap;
}

/* CARD */
.article-card {
    width: 33.3%;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    padding: 0.5rem;
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.article-card-content {
    padding: 20px 0;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-satoshi);
    color: rgba(0, 0, 0, 0.7);
}

.article-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
}

.article-challenge {
    color: rgb(0, 0, 0, 0.65);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 150%;
    font-family: var(--font-inter);
    /* letter-spacing: -2.2%; */
}

.read-more {
    color: var(--white);
    font-size: 14px;
    /* background-color: var(--primary); */
    background-color: var(--off-season-landing-orange);
    padding: 0.7rem 1rem;
    border-radius: 20px;
    font-family: var(--font-inter);
}

.author-image{
  width: 70%;
  height: auto;
  margin: 3rem auto;
  overflow: hidden;
}

.author-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 840px) {
    .article-grid {
        flex-wrap: wrap;
    }

    .article-card {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .article-section {
        margin-bottom: 1rem;
    }

    .article-title {
        font-size: 32px;
    }

}

@media (max-width: 600px) {
    .article-title-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-title {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .featured-art-img {
        width: 100%;
    }

    .article-card {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 425px) {
    .article-title {
        font-size: 26px;
    }
}

/* Card container */
.roch-kubatko {
    display: flex;
    margin-bottom: 3rem;
}

.expert-insights-card {
    width: 15%;
    min-width: 230px;
    height: 300px;
    background-size: cover;
    background-position: center;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: end;
}

/* Inner white box */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
    background: white;
    width: 100%;
    margin: 0 auto;
    border-radius: 0.375rem;
    padding: 30px 10px 10px 10px;
    position: relative;
}

/* Logo badge positioned above box */
.logo-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Player name text */
.player-name {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 500;
}

/* Follow button base */
.follow-button {
    padding: 0.4rem 0.75rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

/* State: already following */
.follow-button.following {
    background-color: var(--primary, #007bff);
    /* Replace with your primary color */
    color: white;
}

/* State: not following */
.follow-button.not-following {
    background-color: var(--secondary, #e5e5e5);
    /* Replace with your secondary color */
    color: black;
}

/* Invert icon (matches Tailwind invert) */
.invert {
    filter: invert(1);
}

/* hide the hover state text by default */
.follow-button .hover-state {
    display: none;
}

/* show default text initially */
.follow-button .default-state {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* On hover: swap the spans + change colors */
.follow-button:hover {
    background-color: #007bff;
    /* blue */
    color: white;
}

/* Hide default span, show hover span */
.follow-button:hover .default-state {
    display: none;
}

.follow-button:hover .hover-state {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rk-details {
    width: 84%;
    padding: 0 0 0 2.5rem;
    max-width: calc(100%-230px);
    box-sizing: border-boxs;
}

.rk-details h2 {
    font-size: 54px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.rk-details p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: #3C3C3C;
    line-height: 20px;
    margin-bottom: 0.7rem;
}

@media (max-width: 767px) {
    .roch-kubatko {
        margin-bottom: 1rem;
    }

    .rk-details h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .roch-kubatko {
        flex-direction: column;
        align-items: center;
    }

    .rk-details {
        padding: 0;
        width: 100%;
        max-width: none;
    }

    .rk-details h2 {
        margin-top: 0.5rem;
    }
}

@media (max-width: 425px) {

    .expert-insights-card {
        width: 100%;
    }

}

.section-updates {
  width: 100%;
  height: 100%;
  padding: 60px;
  background: var(--white);
  background: var(--bg-secondary);
  /* display: flex;
  flex-direction: column; */
  /* align-items: center; */
}

/*update-items news section*/
.section-updates.news {
  padding: 40px;
}

.section-updates.news .updates-item {
  height: auto;
  gap: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
  width: 100%;
}

.section-updates.news .updates-list {
  gap: 30px;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.updates-list .list-title {
  font-weight: 400;
  font-size: 2.5rem;
  vertical-align: middle;
  text-transform: uppercase;
}

.section-updates.news .updates-list {
  gap: 30px;
}

.updates-item {
  height: fit-content;
  gap: 10px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
}

.updates-item:last-child {
  border-bottom: none;
}

.updates-item-title {
  text-transform: capitalize;
}

.more-news {
  color: var(--white);
  font-size: 14px;
  background-color: var(--primary);
  padding: 0.7rem 1rem;
  border-radius: 20px;
  font-family: var(--font-inter);
  width: fit-content;
  display: block;
  margin: 2.5rem auto;
}

.author-image{
  width: 70%;
  height: auto;
  margin: 3rem auto;
  overflow: hidden;
}

.author-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .section-updates {
    width: 100%;
    height: 100%;
    padding: 10px;
    /* background: var(--white); */
  }

  .section-updates.news {
    padding: 10px;
  }

  .author-image{
    box-sizing: border-box;
    padding: 0 2rem;
  width: 100%;
}
}

@media (max-width: 425px){
  .author-image{
    padding: 0 1rem;
}
}