/* =============================================================================
   STOCK MARKET SECTION - Стили для секции "Фондовый рынок" с карточками статей
   ============================================================================= */

/* Контейнер карточек */
.turn_box .stock-market-posts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

/* Карточка статьи */
.turn_box .turn_box-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.turn_box .turn_box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Изображение карточки */
.turn_box .turn_box-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.turn_box .turn_box-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Контент карточки */
.turn_box .turn_box-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Заголовок */
.turn_box .turn_box-card-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #000000;
    font-family: 'pf_dindisplay_proregular', Arial, sans-serif;
}

.turn_box .turn_box-card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.turn_box .turn_box-card-title a:hover {
    color: #146eb3;
}

/* Описание */
.turn_box .turn_box-card-description {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    flex-grow: 1;
}

/* Дата */
.turn_box .turn_box-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #888888;
}

.turn_box .turn_box-card-date::before {
    content: "📅";
    font-size: 14px;
}

/* Кнопка Read More */
.turn_box .turn_box-card-button {
    display: inline-block;
    padding: 10px 20px;
    background: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.turn_box .turn_box-card-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Кнопка "Показать больше" - используем стили из itx-beginner-section */
.turn_box .itx-beginner-load-more {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .turn_box .stock-market-posts-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .turn_box .turn_box-card-image {
        height: 180px;
    }
    
    .turn_box .turn_box-card-title {
        font-size: 16px;
    }
    
    .turn_box .turn_box-card-description {
        font-size: 13px;
    }
}

