/* assets/css/propem.css */

/* Reuse variables and basic styles from styles.css (implicitly loaded) */

/* Propem Section Container */
.propem-section {
    padding: var(--spacer-lg) 0;
    background-color: var(--white);
}

.propem-container {
    max-width: 1000px; /* Slightly wider than SOTK text to allow for image */
    margin: 0 auto;
    text-align: center;
}

/* 16:9 Thumbnail Container */
.propem-thumbnail-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.propem-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Use cover for photos, unlike SOTK which uses contain for charts */
    transition: transform 0.5s ease;
}

.propem-thumbnail-wrapper:hover .propem-thumbnail {
    transform: scale(1.02);
}

/* Centered Details */
.propem-details-centered {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Keep text left aligned for readability, or center? SOTK text is centered in container but p has align left? SOTK p is default alignment (left). Let's check SOTK again. */
}

/* Re-check SOTK desc alignment */
/* .sotk-desc p { text-align: left? inherited? } */
/* The parent .sotk-container has text-align: center. So SOTK text is centered unless overwritten. */
/* I'll make propem text justified or left aligned for better reading of long descriptions. */

.propem-title-centered {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-900);
    margin-bottom: 1rem;
    text-align: center;
}

.propem-meta-centered {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 2rem;
    color: var(--text-500);
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary-600);
    width: 20px;
    height: 20px;
}

.propem-description-centered {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-600);
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .propem-title-centered {
        font-size: 1.75rem;
    }

    .propem-description-centered {
        font-size: 1rem;
    }

    .propem-meta-centered {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}
