.pm-slideshow-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Roboto', 'Arial', sans-serif; /* Fallback to Arial for better character support */
    background: #f5f7fa;
}

.pm-slideshow-slide {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    transition: transform 0.3s ease;
}

.pm-slideshow-card {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pm-slideshow-image-container {
    position: relative;
    flex: 2;
    overflow: hidden;
}

.pm-slideshow-price-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    z-index: 20;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.pm-slideshow-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pm-slideshow-slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.pm-slideshow-slider img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-slideshow-info {
    flex: 0.5;
    display: flex;
    flex-direction: row;
    background: #f8f9fa;
    padding: 15px;
}

.pm-slideshow-details {
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid #e0e0e0;
    color: #34495e;
    font-size: 0.9em;
}

.pm-slideshow-opportunity-type {
    display: block;
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.pm-details-columns {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.pm-details-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pm-details-column span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pm-slideshow-text {
    flex: 2;
    padding-left: 15px;
    color: #2c3e50;
}

.pm-slideshow-title {
    margin: 0 0 10px;
    font-size: 1.6em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-slideshow-description {
    margin: 0;
    font-size: 1em;
    color: #7f8c8d;
    line-height: 1.5;
}