﻿/* .tender-slider-container {
  background-color: #7b3f2d; 
  min-height: 250px;
  position: relative;
} */
.tender-card {
    /* background-color: rgb(92, 148, 142);*/
    background-color: rgba(111, 69, 16, 0.67) !important;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    width: 18rem;
    height: 8.2rem;
    transition: transform 0.6s ease;
}

/* Date */
.tender-date h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #f8c146;
}

/* Text */
.tender-text {
    font-size: 11px;
    line-height: 1.5;
    cursor: pointer;
}

.text-light {
    font-size: 11px !important;
}

/* ===== SLIDER ===== */
. /*tender-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-item {
    display: inline-block;
    animation: slideRightToLeft 10s linear infinite;
}*/
/* Pause on hover */
/*.slide-item:hover {
        animation-play-state: paused;
    }*/
/* Smooth Right → Left */
/*@keyframes slideRightToLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-120%);
    }
}*/
.slide-content {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}




/* Mobile fix */
@media (max-width: 480px) {
    .tender-card {
        width: 100%;
        height: auto;
        padding: 8px 12px;
        border-radius: 8px;
        margin-right: 20px;
    }
}
