/* section-featured-artist */
.section-featured-artist .featured-artists-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}
.section-featured-artist .artist-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
}
.section-featured-artist .artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.section-featured-artist .artist-card__image {
    position: relative;
    aspect-ratio: 6 / 4;
    overflow: hidden;
    background: var(--bg-light);
}
.section-featured-artist .artist-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.section-featured-artist .artist-card:hover .artist-card__image img {
    transform: scale(1.05);
}
.section-featured-artist .artist-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,.25) 100%
    );
    opacity: .6;
    transition: opacity .3s ease;
}
.section-featured-artist .artist-card:hover .artist-card__image::after {
    opacity: .9;
}
.section-featured-artist button{
    margin:0;
    text-transform: none;
    font-size:var(--font-small);
}
.section-featured-artist button:after{
    margin-left: 10px;
}
.section-featured-artist .artist-card__content {
    padding: 14px 6px 20px;
}
.section-featured-artist .artist-name {
    font-size: var(--font-body-large) !important;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
    letter-spacing: .02em;
}
.section-featured-artist .artist-art-types {
    margin-top: 6px;
    font-size: var(--font-small);
    color: #777;
    line-height: 1.4;
    height:40px;
}
@media (max-width: 768px) {
    .section-featured-artist .featured-artists-list {
        gap: 18px;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

.section-exhibitions-formats .col-infographic>.col-inner {
  background: #fff;
  padding: 32px;
  height: 100%;
  border-radius: 12px;
  position: relative;
}

/* ===== HEADING ===== */
.section-exhibitions-formats .heading-card {
  font-size: var(--font-h3);
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ===== DESCRIPTION ===== */
.section-exhibitions-formats .col-infographic p {
  font-size: var(--font-body);
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 24px;
  max-width: 520px;
}

/* ===== BUTTON GROUP ===== */
.section-exhibitions-formats .col-infographic .row {
  margin-top: 8px;
}
.section-exhibitions-formats .row-list-button-exhibition .col{
    padding-bottom:0;
}
.section-exhibitions-formats .row-list-button-exhibition a{
    position:relative;
    padding:0;
}
.section-exhibitions-formats .row-list-button-exhibition a:after{
    content:"";
    height:1px;
    width:25px;
    bottom:0;
    left:0;
    position:absolute;
    background: var(--fs-color-secondary);
    transition:.3s ease;
}
.section-exhibitions-formats .row-list-button-exhibition a:hover:after{
    width:100%;
}
.section-exhibitions-formats .list-card-infographic-exhibitions{
    margin-top:30px;
}
.section-how-we-curate .row-list-step-curate {
    margin-top: 48px;
}
.section-how-we-curate .row-list-step-curate .col-inner{
    height:100%;
}
/* ===== CARD WRAPPER ===== */
.section-how-we-curate .workflow-step {
    height: 100%;
    padding: 32px 28px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.section-how-we-curate .workflow-step:hover {
    background: #ffffff;
    border-color: rgba(0,0,0,0.12);
}

/* ===== STEP NUMBER ===== */
.section-how-we-curate .step-numb {
    display: inline-block;
    font-size: var(--font-h2);
    font-weight: 500;
    line-height: 1;
    color: rgba(0,0,0,0.2);
}

/* ===== HEADING ===== */
.section-how-we-curate .workflow-step .heading {
    font-size: var(--font-h3);
    font-weight: 500;
    margin-bottom: 12px;
    color: #111;
}

/* ===== DESCRIPTION ===== */
.section-how-we-curate .workflow-step .short-desc {
    font-size: var(--font-body);
    line-height: 1.7;
    color: rgba(0,0,0,0.75);
    margin: 0;
}

/* ===== COLUMN SPACING ===== */
.section-how-we-curate .col {
    margin-bottom: 24px;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .section-how-we-curate .workflow-step {
        padding: 28px 24px;
    }
}
/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .section-how-we-curate .workflow-step {
        padding: 24px 20px;
    }
}

