.text-white-bold{
    color: white;
    font-weight: var(--font-weight-bold);

}

.yellow h1{
    color: #ffbc01;
}

.logo-parteneri{
    max-width: 140px;
    max-height: 140px;
}

.a-logo-partener{
    margin-right: 5%;
}

.parteneri{
    margin-top: 2%;
}

.yellow-text {
    color: #ffbc01;
}

.blue-text {
    align-self: left !important;
    color: #023c61;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .categories-section .row {
        display: flex;
        flex-direction: column;
    }

    .categories-block {
        border-radius: 50px;
        width: calc(100% - 40px);
        height: auto;
        min-height: 100px;
        margin: 0 auto 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pill-course{
        width: 100%;
    }

    .logo-parteneri {
        max-width: 100px;
        max-height: 100px;
    }

    .categories-block-number {
    position: relative;
    }
}
.distance {
    margin-top: 15px;
}
/* News Section */
.news-section {
    background-color: #ffbc01; /* Match the background color */
    padding: 60px 0; /* Add padding for spacing */
}

.custom-card {
    border: none; /* Remove default card border */
    border-radius: var(--border-radius-medium); /* Match the border radius */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.card-img-top {
    border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0; /* Round the top corners */
    height: 250px; /* Set a fixed height for images */
    object-fit: cover; /* Ensure images cover the area */
}

.card-title {
    font-weight: var(--font-weight-bold); /* Match the font weight */
}

.card-text {
    color: var(--p-color); /* Match the text color */
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .news-section {
        padding: 40px 0; /* Adjust padding for smaller screens */
    }
}