.science-card-date {
    text-align: right;
	font-weight: bold;
}

.science-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 200px;
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.science-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.science-card:hover .science-card-image img {
    transform: scale(1.05);
}

.science-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.science-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-main-4, #0077b6);
    margin-bottom: 12px;
    line-height: 1.3;
}

.science-card-excerpt {
    color: black;

    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 900px) {
	.science-card-excerpt {
        display:none;
    }
}
@media (max-width: 400px) {
	.science-card-date {
        display:none;
    }
	.science-card-title {
		font-size: 1.0rem;
	}
}