@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&display=swap');

.richmond-about-us {
  padding-bottom: 100px;
}

.richmond-about-us .about-us-container {
  background: linear-gradient(to bottom,  rgba(238,62,53,0) 0%,rgba(238,62,53,.1) 100%);
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Left Column - Images */
.richmond-about-us .images-column {
  flex: 0 0 675px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.richmond-about-us .main-image {
  width: 100%;
  height: 393px;
  overflow: hidden;
}

.richmond-about-us .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 14px 14px 0;
}

.richmond-about-us .thumbnail-images {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.richmond-about-us .thumb-image {
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
}

.richmond-about-us .thumb-image:first-child {
  width: 233px;
  height: 224px;
}

.richmond-about-us .thumb-image:last-child {
  width: 151px;
  height: 147px;
}

.richmond-about-us .thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center Column - Content */
.richmond-about-us .content-column {
  flex: 1;
  max-width: 525px;
}

.richmond-about-us h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 18px;
}

.richmond-about-us .intro-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 24px;
}

.richmond-about-us h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 18px;
}

.richmond-about-us .focus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
}

.richmond-about-us .focus-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  padding-left: 26px;
  margin-bottom: 8px;
  position: relative;
}

.richmond-about-us .focus-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background-color: #EE3E35;
  font-size: 14px;
  font-weight: 700;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.richmond-about-us .focus-list li:after {
    display: none;
}

.richmond-about-us .learn-more-btn {
  display: inline-block;
  padding: 7px 28px;
  background: transparent;
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #EE3E35;
  border-radius: 20px;
  transition: all 0.3s ease;
  min-width: 196px;
  min-height: 38px;
  text-align: center;
}

.richmond-about-us .learn-more-btn:hover {
  background: #EE3E35;
  color: #fff;
  border-color: #EE3E35;
}

/* Right Column - Player Image */
.richmond-about-us .player-image-column {
  width: 450px;
  height: 980px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: -75px;
  position: relative;
}
.richmond-about-us .player-image {
  width: 100%;
  height: 100%;
}

.richmond-about-us .player-image-column img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px 0 0 14px;
  object-fit: cover;
}

/* Responsive Design */
@media(max-width: 1440px) {
    .richmond-about-us .images-column {
        flex: 0 0 435px;
    }
    
    .richmond-about-us {
        /* padding: 90px 0 0; */
    }
}
@media(max-width: 1399px) {
    .richmond-about-us .images-column {
        flex: 0 0 435px;
    }
    .richmond-about-us .player-image-column {
        width: 265px;
    }
}

@media (max-width: 1199px) {
    .richmond-about-us .player-image-column {
    display: none;
}
    .richmond-about-us h2 {
    font-size: 32px;
}
    .richmond-about-us {
        padding-bottom: 0;
    }

.richmond-about-us h3 {
    font-size: 20px;
}
    .richmond-about-us .about-us-container {
    padding-bottom: 80px;
}

}

@media (max-width: 991px) {
    .richmond-about-us .content-column {
    max-width: unset;
    padding: 0 20px;
}
    .richmond-about-us .about-us-container {flex-direction: column;}

.richmond-about-us .images-column {
    flex: 1 1 auto;
    width: 100%;
    padding: 0 20px;
}

.richmond-about-us .main-image img {
    border-radius: 14px;
}

.richmond-about-us .thumbnail-images {
    justify-content: center;
}

.richmond-about-us .thumb-image:first-child, .richmond-about-us .thumb-image:last-child {
    width: 233px;
    height: 224px;
}

}

@media (max-width: 767px) {
    .richmond-about-us h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.richmond-about-us h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.richmond-about-us .focus-list {
    margin: 0 0 25px 0;
}

.richmond-about-us .thumb-image:first-child, .richmond-about-us .thumb-image:last-child {
    width: 152px;
    height: 150px;
}

.richmond-about-us .thumbnail-images {
    gap: 20px;
}

.richmond-about-us .images-column {
    gap: 20px;
}
    .richmond-about-us {
    padding: 20px 0;
}
  
}
