/**
 * Dobry Kartacz – Shortcodes Styles
 */

/* Informacje o wpisie */
.post-info {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.post-info a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info a:hover {
    color: #005177;
    text-decoration: underline;
}

.post-info .post-date,
.post-info .post-time,
.post-info .post-author,
.post-info .post-categories,
.post-info .post-tags,
.post-info .post-comments {
    display: inline-block;
}

/* Obrazek wyróżniający */
.post-thumbnail {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Wrapper dla przyciętego obrazka */
.featured-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
}

.featured-image-wrapper img {
    display: block;
}

.featured-image-cropped {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Karta wpisu */
.post-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-card .post-thumbnail {
    margin-bottom: 15px;
    border-radius: 4px;
}

.post-card .post-title {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.post-card .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card .post-title a:hover {
    color: #0073aa;
}
