.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.history-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-gray-200);
}

.history-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.history-card p:last-child {
    margin-bottom: 0;
}

.stats-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--bg-gray-200);
    box-shadow: var(--shadow-md);
}

.stats-card ul li {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--bg-gray-200);
}

.stats-card ul li:last-child {
    border-bottom: none;
}

.stats-card .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.history-timeline .timeline-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--bg-gray-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.history-timeline .timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.history-timeline .period {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(34, 139, 34, 0.1);
    margin-bottom: var(--spacing-sm);
}

.history-tourism .history-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.history-tourism .gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-white);
}

.history-tourism .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.history-tourism .gallery-item span {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--bg-white);
}

.tourism-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--bg-gray-200);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tourism-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tourism-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 156, 156, 0.12);
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.community-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--bg-gray-200);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.list-check {
    padding-left: 1.25rem;
    margin: 1rem 0 0;
    color: var(--text-secondary);
}

.list-check li {
    margin-bottom: 0.5rem;
    position: relative;
}

.links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-sm);
}

.link-item {
    background: var(--bg-white);
    border: 1px solid var(--bg-gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition-base), transform var(--transition-base);
}

.link-item:hover {
    background: rgba(34, 139, 34, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .history-card,
    .stats-card,
    .timeline-card,
    .tourism-card,
    .community-card {
        padding: var(--spacing-md);
    }

    .history-tourism .history-gallery {
        flex-direction: row;
        gap: var(--spacing-sm);
    }

    .history-tourism .gallery-item {
        flex: 1;
    }

    .history-tourism .gallery-item img {
        height: 140px;
    }
}

