:root {
    --primary-color: #d4af37;
    --secondary-color: #7d5ba6;
    --dark-color: #1a1a2e;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --text-light: #ffffff;
    --accent-color: #c0b283;
    --link-color: #7d5ba6;
    --link-visited: #5d3f8a;
    --link-hover: #d4af37;
}

.article {
    max-width: 1128px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary-color);
}

.article h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.article h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.create-date {
    font-size: 0.9em;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-style: italic;
}

.article-image {
    margin-bottom: 20px;
    text-align: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.article-content {
    line-height: 1.8;
    font-size: 1.1em;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 15px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid var(--accent-color);
    margin: auto;
    display: block;
}

.category {
    font-size: 0.9em;
    color: var(--accent-color);
    margin-top: 20px;
    border-top: 1px solid var(--accent-color);
    padding-top: 10px;
}

.article-content a:link {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--link-color);
}

.article-content a:visited {
    color: var(--link-visited);
}

.article-content a:hover {
    color: var(--link-hover);
    text-decoration: underline;
    border-bottom: none;
}

.gallery-slider.slick-initialized.slick-slider.slick-dotted {
    width: 50%;
    margin: 0 auto;
}

.slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1
}

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

    .article h1 {
        font-size: 2em;
    }

    .article h2 {
        font-size: 1.6em;
    }

    .intro-image {
        border-radius: 3px;
    }
}