main {
    padding-block: 16px;
    color: #9CA0AB;
    padding-inline: 16px;
}

main a {
    text-decoration: none;
    color: #9CA0AB;
}

main .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 16px;
}

main .header i {
    font-size: 24px;
    cursor: pointer;
}

main article {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main article h1 {
    color: white;
    font-size: 31px;
}

main article .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

main article .info .data {
    display: flex;
    align-items: center;
    gap: 16px;
}

main article .info .category {
    background: #E41827;
    padding: 4px 20px;
    color: white;
}

main article .img-container {
    width: 100%;
    height: 300px;
}

main article .img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

main article .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-block: 16px;
}

main article .tags .tag {
    color: #b6bac6;
    background: #464D5E;
    border-radius: 5px;
    padding: 4px 10px;
}

main article .socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main article .socials .title {
    color: white;
}

main article .socials .items {
    display: flex;
    gap: 16px;
}

main article .socials .items i {
    display: flex;
    font-size: 24px;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

main article .socials .items i.twitter {
    background: black;
}

main article .socials .items i.instagram {
    background: linear-gradient(to right, #F200FF, #FF0101);
}

main article .socials .items i.whatsapp {
    background: #17BA43;
}

main article .socials .items i.facebook {
    background: #1E67D5;
}

main article .socials .items i.youtube {
    background: red;
}

main article .socials .items i.tiktok {
    background: black;
}

main .divider {
    height: 1px;
    width: 100%;
    background: #353A45;
    margin-block: 16px;
}

main .more {
    display: flex;
    align-items: center;
    gap: 16px;
}

main .more .mtabbar {
    color: #9CA0AB;
    cursor: pointer;
}

main .more .mtabbar.active {
    color: #E41827;
    font-weight: bold;
}

main .tabs .tab {
    display: none;
}

main .tabs .tab.active {
    display: block;
}

main .tabs .tab#recommended-tab .articles {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

main .tabs .tab#recommended-tab .articles a {
    display: flex;
    gap: 16px;
}

main .tabs .tab#recommended-tab .articles a .img-container {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
    overflow: hidden;
    height: 100px;
    border-radius: 10px;
}

main .tabs .tab#recommended-tab .articles a .img-container img {
    height: 100%;
}

main .tabs .tab#recommended-tab .articles a .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

main .tabs .tab#recommended-tab .articles a .content h2 {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

main .tabs .tab#recommended-tab .articles a .content p {
    font-size: 12px;
}

main .tabs .tab#recommended-tab .articles a .content .footer {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

main .tabs .tab#comments-tab .comment-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main .tabs .tab#comments-tab .comment-section .comment-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

main .tabs .tab#comments-tab .comment-section .comment-box input {
    width: 100%;
    background: transparent;
    border-radius: 50px;
    border: 1px solid #464D5E;
    outline: none;
    font-size: 16px;
    padding: 16px;
    color: #9CA0AB;
}

main .tabs .tab#comments-tab .comment-section .comment-box input::placeholder {
    color: #464D5E;
}

main .tabs .tab#comments-tab .comment-section .comment-box i {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #060918;
    color: white;
    font-size: 28px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    border-radius: 50%;
    cursor: pointer;
}

main .tabs .tab#comments-tab .comment-section .has-comments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid #353A45;
    padding: 16px;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header .user-info img {
    width: 27px;
    height: 27px;
    border-radius: 50%;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header .user-info .name {
    color: white;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header .date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

main .tabs .tab#comments-tab .comment-section .has-comments .comment .header .date i {
    font-size: 14px;
}

main .tabs .tab#comments-tab .comment-section .no-comment {
    text-align: center;
    padding-block: 48px;
}

@media(min-width: 768px) {
    main {
        padding-top: 80px;
        gap: 16px;
        align-items: start;
        padding-inline: 48px;
    }
}

@media(min-width: 930px) {
    body {
        background-image: url(../images/hero.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    main {
        padding-top: 132px;
        padding-inline: 20%;
    }

    main .container {
        background: #24272E;
        padding-inline: 16px;
        padding-bottom: 32px;
    }
}