/* ─────────────────────────────────────────────────────────────
   Gorriceta Awards Carousel — awards-carousel.css
───────────────────────────────────────────────────────────── */

.gac-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: #0b1120;
    position: relative;
}

/* Fade edges */
/*.gac-carousel-wrapper::before,*/
/*.gac-carousel-wrapper::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 80px;*/
/*    z-index: 2;*/
/*    pointer-events: none;*/
/*}*/

/*.gac-carousel-wrapper::before {*/
/*    left: 0;*/
/*    background: linear-gradient(to right, #0b1120 0%, transparent 100%);*/
/*}*/

/*.gac-carousel-wrapper::after {*/
/*    right: 0;*/
/*    background: linear-gradient(to left, #0b1120 0%, transparent 100%);*/
/*}*/

/* Track */
.gac-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
    width: max-content;

    /* Animation assigned via JS */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
}

.gac-set {
    display: flex;
    align-items: stretch;
}

/* Pause on hover (class toggled via JS based on setting) */
.gac-carousel-wrapper.gac-pause-on-hover:hover .gac-track {
    animation-play-state: paused;
}

/* Card */
.gac-card {
    width: max-content;
    background-color: #0f1b2d;
    background-image: radial-gradient(114.17% 258.17% at 125.18% -66.08%, #001F60 0%, #091226 100%);
    border: 1px solid #b8922a;
    border-radius: 4px;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 32px 40px;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gac-card:hover {
    border-color: #d4a93a;
}

.gac-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;;
}

.gac-rank {
    height: 56px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gac-rank-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.gac-rank-label {
    font-size: 34px;
    font-weight: 700;
    color: #d4a93a;
    line-height: 1;
    transform: translateY(6px);
}

.gac-category {
    font-size: 15px;
    font-weight: 700;
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-top: 24px;
}

.gac-award-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin-top: 4px;
}

.gac-award-body-line {
    white-space: normal;
}


/* ─────────────────────────────────────────────────────────────
   Keyframe Animations — injected dynamically,
   but fallback static ones here for reference
───────────────────────────────────────────────────────────── */
@keyframes gac-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes gac-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/*.gac-track {*/
/*    transform: none !important;*/
/*}*/

