.blog-hero {
    display: flex;
    gap: 25px;
    margin-bottom: 3rem;
    /* margin-top: 120px; */
}

.hero-img {
    width: 75%;
    height: auto;
    box-sizing: border-box;
    position: relative;
}

.hero-img img{
    max-height: 250px;
}

.hero-img img:nth-child(1) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 10px;
}

.hero-logo {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100px;
    height: 100px;
}

.hero-ads-img {
    width: 25%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-ads-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.main {
    margin-bottom: 3rem;
}

.orioles-img {
    display: flex   ;
    gap: 10px;
}

.orioles-img span.category-name {
    padding: 4px 10px;
    background-color: var(--off-season-landing-orange);
    /* background-color: #0250A0; */
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-family: var(--font-inter);
    font-weight: 400;
    text-transform: uppercase;
}

.main>h1 {
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 54px;
    margin: 1rem 0;
}

.main-container {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    font-family: var(--font-inter);
     overflow: visible;
}

.main-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.main-content li {
    border: 1px solid #E8E8E8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    padding: 0.5rem;
    box-sizing: border-box;
    width: fit-content;
    color: #484848;

}

.main-content>ul div {
    width: 1px;
    border-left: 1px solid #E8E8E8;
    height: 100%;
}

.main-content {
    /* width: 75%; */
    flex: 1;
}

.main-adv-img {
    height: auto;
    border-radius: 10px;
    box-sizing: border-box;
    position: sticky;
  top: 20px;
}

.main-adv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.main-content>p {
    color: #3C3C3C;
    margin-top: 0.7rem;
    font-size: 16px;
}

.article-section {
    color: #000000;
    margin-bottom: 3rem;
}

.article-container {
    margin: auto;
}

.article-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
    line-height: 120%;
}

/* GRID */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 31.5%));
    gap: 25px;
}

/* CARD */
.article-card {
    overflow: hidden;
    background: #fff;
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.article-card-content {
    padding: 20px 0;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-satoshi);
    color: rgba(0, 0, 0, 0.7);
    /* color: #666; */
}

.article-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    /* letter-spacing: -1.9%; */
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
}

.article-challenge {
    color: rgb(0, 0, 0, 0.65);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 150%;
    font-family: var(--font-inter);
    /* letter-spacing: -2.2%; */
}

.read-more {
    color: var(--white);
    font-size: 14px;
    /* background-color: var(--primary); */
    background-color: var(--off-season-landing-orange);
    padding: 0.7rem 1rem;
    border-radius: 20px;
    font-family: var(--font-inter);
}

.comments {
    font-family: var(--font-inter);
    margin-bottom: 3rem;
}

.comments-input {
  display: flex;
  gap: 20px;
}

/* ============================== */
/* COMMENTS WRAPPER */
/* ============================== */
.comments-area {
    margin-top: 50px;
    padding: 0 10px;
}

.comments-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================== */
/* COMMENT LIST */
/* ============================== */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #ffffff;
}

.comment .children {
    margin-left: 40px;
    margin-top: 20px;
}

/* ============================== */
/* AUTHOR SECTION */
/* ============================== */
.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.comment-author .fn {
    font-weight: bold;
    font-size: 16px;
}

/* ============================== */
/* COMMENT META */
/* ============================== */
.comment-metadata {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

/* ============================== */
/* COMMENT TEXT */
/* ============================== */
.comment-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* ============================== */
/* REPLY LINK */
/* ============================== */
.reply a {
    font-weight: 600;
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
}

.reply a:hover {
    text-decoration: underline;
}

/* ============================== */
/* COMMENT FORM */
/* ============================== */
.comment-respond {
    margin-top: 50px;
    padding: 25px;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 10px;
}

.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.comment-form textarea {
    min-height: 120px;
}

/* Submit Button */
.comment-form .form-submit input[type="submit"] {
    background-color: #0066cc;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-form .form-submit input[type="submit"]:hover {
    background-color: #004999;
}

.comments-input>div {
    width: 50%;
    padding: 0.5rem;
    box-sizing: border-box;
}

.rate-and-comment>div {
    margin-top: 0.5rem;
}

.comments-adv-img {
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.comments-adv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 47%));
    }
}

@media (max-width: 991px) {
    .main-adv-img {
  top: 90px;
}
}

@media (max-width: 767px) {
    .blog-hero {
        gap: 16px;
        margin-bottom: 1rem;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .main {
        margin-bottom: 1rem;
    }

    .main-container {
        flex-direction: column;
    }

    .main>h1.entry-title{
        width: 100%;
    }

    .main-content {
        width: 100%;
    }

    .main-adv-img {
        width: 100%;
        /* height: 50vh; */
    }

    .main>h1 {
        font-size: 32px;
    }

    .article-section {
        margin-bottom: 1rem;
    }

    .comments {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .article-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 100%));
    }

}

@media (max-width: 480px) {
    .comments-input {
        flex-direction: column;
    }

    .comments-input>div {
        width: 100%;
        padding: 0;
    }

    .comments input {
        min-width: 70%;
    }
}

@media (max-width: 425px) {
    .blog-hero {
        flex-direction: column;
    }

    .hero-img {
        width: 100%;
    }

    .hero-ads-img {
        width: 100%;
    }

    .hero-ads-img img {
        margin-top: 1rem;
    }

    .hero-logo {
        width: 40px;
        height: 40px;
    }

    .article-container {
        padding: 10px;
    }

    .article-title {
        font-size: 26px;
    }
}
