/* Tábory Archive Grid Layout */
.tabory-archive-grid-1936 {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Card Base */
.tabory-card-1936 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Image Wrapper */
.tabory-card-image-1936 {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.tabory-card-image-1936 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Price Badge */
.tabory-price-badge-1936 {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 60px;
    font-weight: bold;
    z-index: 10;
}

/* Content Wrapper */
.tabory-card-content-1936 {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Typography elements */
.tabory-card-title-1936 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.tabory-card-title-1936 a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.tabory-card-title-1936 a:hover {
    opacity: 0.8;
}

.tabory-card-date-1936 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tabory-card-excerpt-1936 {
    margin: 0 0 20px 0;
    line-height: 1.6;
    flex-grow: 1; /* Pushes button to bottom if cards are equal height */
}

/* Button */
.tabory-card-button-1936 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tabory-card-button-1936:hover {
    background-color: #333;
    color: #fff;
}