body {
    background-color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.post-container {
    margin-top: 100px;
    margin-bottom: 100px;
}

.post-content-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.post-sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.post-content-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.post-widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 3px solid #A17920;
    padding-bottom: 8px;
}

.post-widget-list {
    list-style: none;
    padding: 0;
}

.post-widget-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.post-widget-ads {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.post-widget-ads img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.post-widget-ads img:hover {
    transform: scale(1.05);
}

.post-widget-ads p {
    font-size: 15px;
    text-align: center;
    margin-top: 12px;
}

.post-widget-ads a {
    color: #A17920;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-widget-ads a:hover {
    color: #A17920;
    text-decoration: underline;
}

.post-widget-social {
    margin-top: 20px;
    text-align: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 5px;
    font-size: 24px;
    color: #ffffff;
    background: #A17920;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #875d17;
    transform: scale(1.1);
}
