/* ===== MAIN WEBSITE WIDTH ===== */
.site,
.site-content,
.content-area {
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER STYLING ===== */
.site-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
}

.site-title a {
    color: #111111 !important;
    text-decoration: none;
}

.site-description {
    font-size: 16px;
    color: #666;
    margin-top: -10px;
}

/* ===== MENU ===== */
.main-navigation {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.main-navigation a {
    font-size: 17px;
    font-weight: 600;
    color: #222 !important;
    transition: 0.3s ease;
}

.main-navigation a:hover {
    color: #7b3fe4 !important;
}

/* ===== BLOG POST CARD STYLE ===== */
.post {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    transition: 0.3s ease;
}

.post:hover {
    transform: translateY(-4px);
}

/* ===== BLOG TITLE ===== */
.entry-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.entry-title a {
    color: #6f42c1 !important;
    text-decoration: none;
}

.entry-title a:hover {
    color: #4e2ca3 !important;
}

/* ===== META INFO ===== */
.entry-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

/* ===== FEATURED IMAGE ===== */
.post-thumbnail img {
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
}

.post-thumbnail img:hover {
    transform: scale(1.02);
}

/* ===== BODY TEXT ===== */
.entry-content {
    font-size: 19px;
    line-height: 1.9;
    color: #333;
}

/* ===== BUTTON STYLE ===== */
.wp-block-button__link,
button,
input[type="submit"] {
    background: linear-gradient(135deg, #7b3fe4, #5b2bbd);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    color: white !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .site-title {
        font-size: 38px;
    }

    .entry-title {
        font-size: 32px;
    }

    .post {
        padding: 18px;
    }

    .entry-content {
        font-size: 17px;
    }
}