/* Homepage Spotlight — two-column featured ad + profile */

.homepage-spotlight {
    margin-bottom: 1.5em;
}

.homepage-spotlight__heading {
    margin-bottom: 0.75em;
}

/* Equal-height columns with wider gutter so cards read a bit narrower */
.homepage-spotlight > .row-fluid {
    display: flex;
    align-items: stretch;
    gap: 38px;
    margin-bottom: 1em;
}

.homepage-spotlight > .row-fluid > .span6 {
    float: none;
    display: flex;
    flex-direction: column;
    width: auto;
    flex: 1 1 0;
    margin-left: 0;
}

.homepage-spotlight__card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.homepage-spotlight__label {
    display: block;
    padding: 10px 14px 0;
    font-size: 14.3px; /* 30% larger than 11px */
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #666666;
}

.homepage-spotlight__media {
    display: block;
    position: relative;
    margin-top: 8px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e7e7f7;
    overflow: hidden;
}

.homepage-spotlight__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* YouTube posters often have letterbox bars; center the frame vertically */
.homepage-spotlight__media--youtube img {
    object-position: center center;
}

.homepage-spotlight__youtube-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    background: #cc181e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.homepage-spotlight__youtube-badge:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 7px;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #ffffff;
}

.homepage-spotlight__body {
    padding: 12px 14px 14px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.homepage-spotlight__title {
    margin: 0 0 0.4em;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.homepage-spotlight__title a {
    color: #2c3e50;
    text-decoration: none;
}

.homepage-spotlight__title a:hover {
    color: #f66300;
}

.homepage-spotlight__location {
    color: #666666;
    font-size: 13px;
    margin-bottom: 0.6em;
}

.homepage-spotlight__tags,
.homepage-spotlight__genres {
    margin-bottom: 0.45em;
}

.instrument-tag {
    border: 3px outset #cccccc21;
    border-radius: 10px;
    padding: 5px;
    margin-right: 3px;
    margin-bottom: 3px;
    font-size: 12px;
    transition: transform .4s;
    background: #4aa3df40;
    display: inline-block;
    color: #444;
    cursor: default;
}

.instrument-tag:hover {
    transform: scale(1.25);
}

.homepage-spotlight__excerpt {
    color: #333333;
    font-size: 14px;
    line-height: 1.45;
    max-height: 2.9em; /* 2 lines × 1.45 */
    margin: 0 0 0.75em;
    flex: 0 0 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.homepage-spotlight__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #dddddd;
}

.homepage-spotlight__byline {
    color: #666666;
    font-size: 13px;
    min-width: 0;
}

.homepage-spotlight__byline a {
    color: #f66300;
    font-weight: 600;
    text-decoration: none;
}

.homepage-spotlight__byline a:hover {
    text-decoration: underline;
}

.homepage-spotlight__cta {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 978px) {
    .homepage-spotlight {
        display: none;
    }
}
