/* ===== Карточка ===== */
.post-item {
    max-width: 720px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== Контейнер поста ===== */
.post {
    display: flex;
    flex-direction: column;
}

/* ===== Фото ===== */
.post__image-link {
    display: block;
    background-color: white;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 360px; /* ограничение по высоте */
    overflow: hidden;
    border-radius: 12px;
}

.post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== Контент ===== */
.post__content {
    padding: 16px 20px 8px;
}

.post__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.post__title a {
    color: #1f2933;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post__title a:hover {
    color: #0B1F33;
}

.post__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
}

/* ===== Блок лодки ===== */
.post__boat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0 12px 0;
    font-size: 14px;
    border-radius: 0 0 12px 12px;
}

.post__boat-label {
    color: #1f2933;
    font-weight: 500;
}

.post__boat a {
    color: #0B1F33;
    text-decoration: none;
    font-weight: 500;
}

.post__boat a:hover {
    text-decoration: underline;
}
