@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Medium.ttf');
}

@font-face {
    font-family: 'Circe';
    src: url('../fonts/Circe25.otf');
}

.news-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-card .card-img-top {
    border-bottom: 1px solid #eee;
    max-height: 250px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 1rem;
}

.news-card .card-title a {
    color: #007bff;
    text-decoration: none;
}

.news-card .card-title a:hover {
    text-decoration: underline;
}

.row.d-flex {
    display: flex;
}

.card.h-100 {
    height: 100%;
}

.card-body.d-flex.flex-column {
    display: flex;
    flex-direction: column;
}

.card-img-top {
    cursor: pointer;
}

/* Кнопки */
.btn-link {
    border: 0;
    border-radius: 25px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .btn-link {
        padding: 0.75rem 1.5rem;
    }
}

.btn-default-link {
    color: #FFF;
    text-decoration: none;
    padding: 1.25rem 2rem;
    background: -webkit-linear-gradient(left, #FE4F70 0%, #FFA387 51%, #FE4F70 100%);
    background: linear-gradient(to right, #FE4F70 0%, #FFA387 51%, #FE4F70 100%);
    transition: all 0.3s ease-in-out;
    background-size: auto;
    background-size: 200% auto;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
}

.btn-default-link:hover {
    color: #FFF;
    background-position: right center;
}

/* Поиск, фильтрация и сортировка */
.padding-left{
    padding-left: 2.5em;
}

.hover-cursor-pointer{
    cursor: pointer;
}
select:hover, 
.dropdown-toggle:hover, 
.dropdown-item:hover,
[role="button"]:hover {
    cursor: pointer;
}