.blog-post-section {
    background-color: #ffffff;
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
}

.blog-post-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.read-more-title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.read-more-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.read-more-image-img {
    height: 231px;
    align-self: stretch;
    aspect-ratio: 4/3;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.read-more-item:hover .read-more-image-img {
    transform: scale(1.05);
}

.read-more-content {
    padding: 20px 0;
}

.read-more-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(0, 0, 0, 0.60);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-date svg {
    flex-shrink: 0;
}

.read-more-title-item {
    color: #333333;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.read-more-title-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-excerpt {
    overflow: hidden;
    color: rgba(0, 0, 0, 0.60);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.read-more-link {
    display: inline-block;
    overflow: hidden;
    color: black;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #BE8514;
}

.blog-post-content {
    color: #333333;
}

.blog-post-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-post-image-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-post-meta {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta svg {
    flex-shrink: 0;
}

.blog-post-meta span {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-post-title {
    color: #333333;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.blog-post-body {
    color: rgba(0, 0, 0, 0.70);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-post-body p {
    margin-bottom: 10px;
}

.blog-post-body h2 {
    color: #333333;
    font-family: "Proxima Nova";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 30px 0 20px;
}

.blog-post-body h3 {
    color: #333333;
    font-size: 18px;
    font-family: "Proxima Nova";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 28px 0 16px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body a {
    color: #BE8514;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-post-body blockquote {
    border-left: 4px solid #BE930B;
    padding-left: 20px;
    margin: 24px 0;
    color: #666666;
    font-style: italic;
}

.comments-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.comments-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.comments-title {
    color: #333333;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.comments-note {
    color: rgba(0, 0, 0, 0.60);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comment-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-form-group label {
    color: #333333;
    text-align: left;
    justify-content: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.comment-form-group .required {
    color: #F30305;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.comment-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-submit-btn {
    align-self: center;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #292929;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid #BE930B;
    background: #BE930B;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.comment-submit-btn:hover {
    background-color: #cc9f0c;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }

    .comments-title {
        font-size: 24px;
    }

    .comment-submit-btn {
        width: 100%;
        padding: 16px;
    }
}

@media (max-width: 1200px) {
    .blog-post-grid {
        grid-template-columns: 320px 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blog-post-sidebar {
        position: static;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-image-img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .blog-post-section {
        padding: 40px 0;
    }

    .blog-post-container {
        padding: 0 16px;
    }

    .blog-post-title {
        font-size: 26px;
    }

    .blog-post-image-img {
        height: 250px;
    }

    .read-more-image {
        height: 180px;
    }
}