.custom-fashion-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: stretch;
}

.custom-fashion-card {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  box-sizing: border-box;
}

.custom-fashion-card-image img {
  width: 100%;
  height: 180px !important;
  object-fit: cover;
  border-radius: 16px !important;
}

.custom-fashion-card-meta {
  margin-top: 14px;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 500;
}

.custom-fashion-card-title {
  margin: 9px 0 6px;
  font-size: 23px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.custom-fashion-card-desc {
  color: #7C7B7B;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.custom-fashion-card-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}

.custom-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DEDEDE;
}

.custom-author-info {
  display: flex;
  flex-direction: column;
}

.custom-author-name {
  font-weight: 600;
  font-size: 16px;
  color: #151515;
}

.custom-author-role {
  font-size: 14px;
  color: #999;
}
.custom-fashion-card-author img.custom-author-avatar {
    border-radius: 100%;
}
/* ====== Responsive Breakpoints ====== */
@media (max-width: 1100px) {
  .custom-fashion-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .custom-fashion-cards-container {
    grid-template-columns: 1fr;
  }
  .custom-fashion-card {
    max-width: 100%;
    padding: 14px;
  }
}
@media (max-width: 500px) {
  .custom-fashion-card-image img {
    height: 140px !important;
    border-radius: 10px !important;
  }
  .custom-fashion-card {
    padding: 8px;
  }
}


/* Fashion Blog Grid */
.fashion-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid #DEDEDE;
  border-bottom: 2px solid #DEDEDE;
  margin: 24px 0;
  padding: 0;
}

.fashion-blog-grid-item {
  padding: 28px 24px 16px 24px;
  border-right: 1px solid #DEDEDE;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fashion-blog-grid-item:last-child {
  border-right: none;
}

.fashion-blog-grid-author {
    font-weight: 500;
    font-size: 16px;
    color: #0E0E0E;
    margin-bottom: 8px;
}
.fashion-blog-grid-title {
  color: #757575;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 900px) {
  .fashion-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .fashion-blog-grid {
    grid-template-columns: 1fr;
  }
  .fashion-blog-grid-item {
    border-right: none;
    border-bottom: 1px solid #DEDEDE;
  }
  .fashion-blog-grid-item:last-child {
    border-bottom: none;
  }
}


/* Single Blog Card */
.fashion-blog-featured-card {
  display: flex;
  gap: 44px;
  margin-bottom: 50px;
}
img.featured-author-avatar {
    border-radius: 100% !important;
}
.fashion-featured-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 16px !important;
    display: block;
    max-width: 950px !important;
    max-height: 464px !important;
}

.fashion-featured-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
}

.fashion-featured-meta {
  color: #282828;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

.fashion-featured-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.18;
  margin-bottom: 16px;
}

.fashion-featured-desc {
  color: #757575;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.52;
  max-width: 600px;
}

.fashion-featured-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.featured-author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.featured-author-info {
  display: flex;
  flex-direction: column;
}

.featured-author-name {
  font-weight: 700;
  font-size: 17px;
  color: #151515;
}

.featured-author-role {
  font-size: 15px;
  color: #999;
  font-weight: 500;
}
.fashion-featured-image{
    width: 70% !important;
}
/* Responsive */
@media (max-width: 800px) {
  .fashion-blog-featured-card {
    flex-direction: column;
    padding: 14px 10px;
    gap: 20px;
    max-width: 98vw;
  }
  .fashion-featured-image img {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 220px;
  }
  .fashion-featured-title {
    font-size: 22px;
  }
}
@media (max-width: 1025px) {
.fashion-blog-featured-card{
  flex-direction: column;
}
.fashion-featured-image{
  width: 100% !important;
}
}

/* Single BLog Post */
.blog-author-box {
     display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
    justify-content: end;
}
.blog-author-box .author-avatar {
    width: 80px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}
.blog-author-box .author-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-author-box .author-name {
    font-weight: 500;
    font-size: 16px;
    color: #181818;
}
.blog-author-box .author-role {
    font-size: 16px;
    color: #7C7B7B;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .blog-author-box { gap: 12px; }
    .blog-author-box .author-avatar { width: 56px; height: 56px; }
    .blog-author-box .author-name { font-size: 17px; }
    .blog-author-box .author-role { font-size: 14px; }
}
