main {
    padding: 6vw 2vw;
    width: 100%;
    gap: 2vw;
    align-items: start!important;
}

section.view-article {
    width: 70%;
    padding: 0 3vw;
    min-height: 100vh;
    position: relative;
    justify-content: start!important;
    gap: 3vw;
}

section.view-article h1 {
    width: 100%;
    font-size: 2vw;
    transform: translateY(1.5vw);
}

section.view-article figure {
    width: 100%;
    height: 30vw;
    border-radius: 0.4vw;
    overflow: hidden;
}

section.view-article figure img {
    border-radius: 0.4vw;
    width: 100%;
    /*height: 100%;*/
}

.article-details {
    width: 100%;
    gap: 0.5vw;
    font-weight: normal;
    font-size: 1vw;
    color: var(--dark-blue);
    align-items: start;
}

.article-details span {
    gap: 0.3vw;
}

.article-details span:nth-child(1) i {
    color: #03a99b;
}

.article-details span:nth-child(2) i {
    color: #a4033c;
}


section.view-article .article-contents {
    width: 100%;
    gap: 1vw;
    font-family: IRANSansX, sans-serif!important;
}

section.view-article p {
    width: 100%;
    font-weight: normal;
    font-size: 1.1vw;
    line-height: 2vw;
    color: var(--dark-blue);
    text-align: justify;
}

aside {
    padding: 1vw;
    width: 27vw;
    border-radius: 1vw;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.35);
    background: #e1e1e1;
    gap: 1vw;
    position: relative;
}

aside h3 {
    padding: 1vw;
    width: 100%;
    text-align: start;
    font-size: 1.4vw;
    border-bottom: 0.1vw solid silver;
}

.aside-news-card {
    padding: 1vw;
    width: 100%;
    position: relative;
    justify-content: space-around;
    border-bottom: 1px dashed rgba(134, 134, 134, 0.35);
}

.aside-news-card figure {
    width: 5vw;
    height: 5vw;
    border-radius: 0.5vw;
    overflow: hidden;
    position: relative;
}

.aside-news-card figure img {
    width: 100%;
    border-radius: 0.5vw;
}

.aside-news-card a {
    display: inline-block;
    width: 70%;
    font-weight: normal;
    font-size: 0.9vw;
    color: var(--dark-blue);
    transition: all 0.2s;
}

.aside-news-card a:hover {
    color: var(--dark-gold);
}

@media screen and (max-width: 992px) {
    section.view-article {
        width: 100%;
        padding: 6vw 4vw;
        gap: 8vw;
    }

    section.view-article h1 {
        font-size: 5.6vw;
        transform: translateY(5vw);
    }

    section.view-article figure {
        height: 60vw;
        border-radius: 5px;
    }

    section.view-article figure img {
        border-radius: 5px;
    }

    .article-details {
        gap: 1.5vw;
        font-size: 2.5vw;
    }

    .article-details span {
        gap: 1.8vw;
    }


    section.view-article p {
        font-size: 3.9vw;
        line-height: 6.5vw;
    }

    main {
        flex-direction: column!important;
    }

    aside {
        padding: 2vw;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
        gap: 2vw;
        order: 2;
    }

    aside h3 {
        padding: 2vw;
        font-size: 4vw;
        border-bottom: 0.2vw solid silver;
    }

    .aside-news-card {
        padding: 2vw;
        gap: 6vw;
    }

    .aside-news-card figure {
        width: 24vw;
        height: 24vw;
        border-radius: 8px;
    }

    .aside-news-card figure img {
        width: 100%;
        border-radius: 8px;
    }

    aside a {
        font-size: 3.6vw!important;
    }
}