/*
Theme Name: Your Child Theme
Description: Child theme for the Theme Blvd framework
Author: Your name here
Template: akita
*/

/*
Note: The parent theme does not include any CSS in
style.css, and so you don't need to @import it here.
*/

/* Add your custom CSS here. */

/* Letzten Menüpunkt rechtsbündig ausgeben (Sprachwechsler) */
ul#primary-menu > li:last-child {
	float: right;
}

.post_grid .featured-image-inner {
    height: 150px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .attachment-small img {
        width: auto;
    }
}

/* Thumbnails im Grid auf gleiche Höhe bringen */
/* Thumbnails im Grid zentrieren */
.post_grid .thumbnail {
    height: 150px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 992px) {
    .post_grid .featured-image-inner {
        height: 100px;
        width: 100px;
    }

    /* Thumbnails im Grid auf gleiche Höhe bringen */
    /* Thumbnails im Grid zentrieren */
    .post_grid .thumbnail {
        height: 100px;
        width: 100px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: table-cell;
        vertical-align: middle;
    }
}

@media (min-width: 993px) {
    .post_grid .featured-image-inner {
        height: 120px;
        width: 130px;
    }

    /* Thumbnails im Grid auf gleiche Höhe bringen */
    /* Thumbnails im Grid zentrieren */
    .post_grid .thumbnail {
        height: 120px;
        width: 130px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        display: table-cell;
        vertical-align: middle;
    }
}

/* Posts: Kein Datum, keine Kategorien anzeigen */
.meta-wrapper {
	display: none;
}

/* Liste der Kategorien bei einem Hersteller-Eintrag */
.post_categories__list {
	clear: both;
	list-style-type: none;
	padding: 0;
}
.post_categories__list li {
	margin: 0.5em 0;
}

.attachment-small img.wp-post-image, .attachment-tb_small img.wp-post-image, .attachment-square_small img.wp-post-image, .attachment-square_smaller img.wp-post-image, .attachment-square_smallest img.wp-post-image {
    max-width: 100%;
}
