.prices-section {
    margin: 2rem 0;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
}

.price-table th, .price-table td {
    padding: 0.5rem 0.4rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: #004080;
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
}

.table-title {
    color: #004080;
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.section-title {
    color: #004080;
    margin: 2rem 0 1.5rem;
    font-size: 1.75rem;
    font-weight: bold;
    border-bottom: 2px solid #004080;
    padding-bottom: 0.5rem;
}

    .price-change {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

.price-change.positive {
    color: #28a745;
}

.price-change.negative {
    color: #dc3545;
}

.price-change i {
    font-style: normal;
}

.last-updated {
    color: #666;
    font-size: 0.85rem;
    margin: -1rem 0 1rem 0;
    text-align: right;
}

.articles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.articles-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column-title {
    color: #004080;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    border-bottom: 2px solid #004080;
    padding-bottom: 0.5rem;
}

.article-link {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .articles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-table {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
        background: none;
        box-shadow: none;
    }

    .price-table thead {
        display: none;
    }

    .price-table tbody {
        display: contents;
    }

    .price-table tr {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 1rem;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        break-inside: avoid;
        margin-bottom: 0;
    }

    .price-table td {
        display: flex;
        padding: 0.5rem 0;
        text-align: left;
        border: none;
        font-size: 0.95rem;
    }

    .price-table td:first-child {
        font-size: 1.1rem;
        font-weight: bold;
        color: #004080;
        padding-top: 0;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #eee;
    }

    .price-table td:nth-child(2) {
        font-size: 1.2rem;
        padding-top: 0.75rem;
    }

    .price-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: bold;
        width: 40%;
        margin-right: auto;
    }

    .price-change {
        margin-left: auto;
        font-weight: 500;
    }
}