.site-main {
    padding: 80px 20px;
    background: #f8f9fa;
}

.site-main article {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(88, 40, 155, 0.12);
}

.entry-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid #fecf18;
    padding-bottom: 20px;
}

.entry-title {
    font-size: 42px;
    font-weight: 700;
    color: #58289b;
    margin: 0;
    line-height: 1.2;
}

.entry-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #58289b;
    margin: 40px 0 15px;
    position: relative;
    padding-left: 20px;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: calc(100% - 8px);
    background: #fecf18;
    border-radius: 10px;
}

.entry-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.entry-content strong {
    color: #58289b;
}

.entry-content a {
    color: #58289b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #fecf18;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #fecf18;
}

.edit-link a {
    display: inline-block;
    padding: 12px 24px;
    background: #58289b;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.edit-link a:hover {
    background: #fecf18;
    color: #58289b;
}

::selection {
    background: #fecf18;
    color: #58289b;
}

@media (max-width: 768px) {
    .site-main {
        padding: 50px 15px;
    }

    .site-main article {
        padding: 30px 20px;
    }

    .entry-title {
        font-size: 32px;
    }

    .entry-content h2 {
        font-size: 24px;
    }

    .entry-content p {
        font-size: 16px;
    }
}