/* Column / Article Styles */
.column-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 64px;
    color: #EAEAEA;
}

.column-article {
    background-color: #1A1D23;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.column-header {
    margin-bottom: 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
}

.column-header h1 {
    font-size: 2rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.column-meta {
    font-size: 0.9rem;
    color: #A0A0A0;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.column-meta .separator {
    color: #555;
}

.column-section {
    margin-bottom: 40px;
}

.column-section h2 {
    font-size: 1.5rem;
    color: #C8A34A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-section h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 500;
}

.column-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #D0D0D0;
    margin-bottom: 24px;
}

.column-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.column-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #D0D0D0;
}

.column-section ul li::before {
    content: '•';
    color: #C8A34A;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.column-box {
    background-color: rgba(200, 163, 74, 0.05);
    border-left: 4px solid #C8A34A;
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.column-box h4 {
    font-size: 1.1rem;
    color: #C8A34A;
    margin-bottom: 16px;
}

.highlight-text {
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(90deg, rgba(200, 163, 74, 0.2) 0%, transparent 100%);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.column-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 48px 0;
}

.column-footer {
    background-color: #141619;
    padding: 32px;
    border-radius: 12px;
    margin-top: 64px;
    text-align: center;
}

.column-footer h3 {
    font-size: 1.2rem;
    color: #C8A34A;
    margin-bottom: 16px;
}

.column-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.column-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.column-links a:hover {
    color: #C8A34A;
}

@media (max-width: 768px) {
    .column-article {
        padding: 24px;
    }

    .column-header h1 {
        font-size: 1.6rem;
    }

    .column-section h2 {
        font-size: 1.3rem;
    }
}