.article_single__container {
    background-color: #fff;
    border-radius: 20px;
}

/* Flex je primaran da bi se zadrzalo dugme SAZNAJ VISE
na dnu elementa*/
.article_single__article_content {
    display: flex;
    justify-content: flex-start;
}

.article_single__article_heading_content {
    color: #b9b9b9;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
    width: 100%;
}

.article_list__date {
    margin-top: 4px;
    margin-left: 10px;
    margin-right: 10px;
}

.article_list__article_date {
    color: #77787b;
    font-size: 0.8rem;
    display: flex;
}

.article_single__content_link {
    color: #000;
    transition: color 0.17s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.article_single__content_link:hover,
.article_single__content_link:focus {
    color: #000;
    text-decoration: none;
    opacity: 0.8;
}

.article_single__article_image {
    display: flex;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
            transition: all 0.3s;
}

.article_single__article_image_file {
    height: auto;
    max-width: 30vw;
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.article_list__square {
    background-color: #a6a6a6;
    display: inline-block;
    height: 20px;
    width: 20px;
}

.article_single__image_link:hover .article_single__article_image_file,
.article_single__image_link:focus .article_single__article_image_file {
    border-radius: 5px;
    opacity: 0.6;
    -webkit-transform: scale(1.02);
       -moz-transform: scale(1.02);
            transform: scale(1.02);
}

.article_single__article_excerpt {
    flex-direction: column;
    padding-left: 30px;
    vertical-align: top;
}

.article_single__article_button_container {
    display: block;
}

.article_single__article_more_button {
    border: none;
    border-radius: 50px;
    color: #000;
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
}

.article_single__article_more_button:hover {
    text-decoration: none;
    opacity: 0.8;
}

.article_single__article_more_button:focus {
    opacity: 0.8;
    text-decoration: none;
}

.article_single__article_more_button:active {
    opacity: 0.8;
    text-decoration: none;
}

.article_single__article_excerpt_text {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

.article_single__more_button {
    text-align: right;
    width: 100%;
}

@supports (filter: brightness(60%)) {
    .article_single__image_link:hover .article_single__article_image_file,
    .article_single__image_link:focus .article_single__article_image_file {
        filter: brightness(60%);
        opacity: 1;
    }
}

@media (min-width: 800px) {
    .article_single__article_excerpt {
        display: inline-block;
        display: flex;
        flex-grow: 1;
    }
    .article_single__article_image {
        display: inline-block;
        display: flex;
    }
}

@media (max-width: 800px) {
    .article_single__article_image {
        width: 100%;
    }

    .article_single__image_link {
        margin: 0 auto;
    }

    .article_single__article_button_container {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .article_single__article_image_file {
        max-width: 100%;
    }
    .article_single__article_image {
        flex-direction: column;
    }

    .article_single__article_content {
        flex-direction: column;
    }

    .article_single__article_excerpt {
        text-align: left;
        padding-left: 0;
    }
    .article_list__article_date {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .article_single__container {
        padding: 5px;
    }
}
