:root{
    --accent-color: #535252;
    --line-color: rgb(187, 188, 189);
    --text: #000000;
    --link-color: #004CBD;
    --link-hover: #bd0013;
    --text-on-btn: #ffffff;
}

.custom-card-img {
    width: 80%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 20px 10% 0 10%;
    border-radius: 14px;
}

.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1;
}

.card-link-custom {
    margin-top: auto;
    padding: 0 20px 24px 20px;
}

.card-title{
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
}

.card-text {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.75;
}

.card-link-custom a {
    text-decoration: none;
    color: var(--link-color);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.card-link-custom a:hover {
    text-decoration: none;
    color: var(--link-hover);
    font-family: Inter, sans-serif;
}

.link-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    /* padding-left: 12px; */
    padding-bottom: 16px;
}

.tag {
    display: inline-block;
    padding: 6px 11px;

    background-color: #f1f3f5;
    color: #555;

    border: 1px solid #3691DB;
    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
}

.tag:hover {
    background-color: #e9ecef;
    color: #3691DB;
}

.filter-button.active {
    background-color: #3691DB;
    color: white;
    border-color: #3691DB;
}

.card-text a,
.card-text a:link,
.card-text a:visited,
.card-text a:hover,
.card-text a:active {
    color: var(--link-color);
    text-decoration: underline;
}


.card-text a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}