/* Project Detail Page Styles */

/* 项目详情主体部分 */
.project-detail-section {
    padding: 2rem 0;
    background-color: #fff;
}

/* 楼盘地图部分样式 */
.map-section {
    padding: 60px 0;
}

.map-address {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.map-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.amap-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* 项目图片画廊 */
.project-gallery {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.project-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Swiper 自定义样式 */
.projectSwiper {
    width: 100%;
    height: 500px;
}

.projectSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 导航按钮样式 */
.project-btn-next,
.project-btn-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--main-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.project-btn-next:hover,
.project-btn-prev:hover {
    background: var(--main-color);
    color: white;
    transform: scale(1.1);
}

.project-btn-next::after,
.project-btn-prev::after {
    display: none;
}

/* 分页指示器样式 */
.project-pagination {
    bottom: 20px !important;
}

.project-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.project-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
    transform: scale(1.2);
}

/* 项目信息区域 */
.project-info {
    padding: 2rem 2rem 0 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    height: 500px;
    overflow-y: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 项目标题 */
.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* 价格显示 */
.project-price {
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--main-color);
    margin-left: 0;
}

/* 房产类型 */
.project-type {
    margin-bottom: 1rem;
}

.type-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* 位置信息 */
.project-location {
    display: flex;
    margin-bottom: 1rem;
    padding: 0.7rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--main-color);
}

.location-icon {
    color: var(--main-color);
    margin-right: 0.5rem;
    padding-top: 2px;
    font-size: 1.1rem;
}

.location-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* 项目详细信息 */
.project-details {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.detail-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    border-right: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-right: none;
}
.project-subtitle h3{
    font-size: 14px;
    color: var(--text-color);
    line-height: 20px;
    overflow: hidden;
    max-height: 60px;
    margin-bottom: 1rem;
}
.detail-label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 操作按钮 */
.project-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-btn {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.contact-btn:hover {
    background-color: #7a1824;
    border-color: #7a1824;
    transform: translateY(-2px);
}

.favorite-btn {
    color: var(--main-color);
    border-color: var(--main-color);
}

.favorite-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: white;
    transform: translateY(-2px);
}

/* 项目亮点 */
.project-highlights {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.highlights-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.75rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 0.25rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.highlights-list li::before {
    content: "•";
    color: var(--main-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 项目亮点部分样式 */
.project-highlights-section {
    padding: 60px 0;
}

.highlights-header {
    text-align: center;
    margin-bottom: 40px;
}

.highlights-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.highlights-content p{
    margin-bottom: 0.3rem;
}

.highlights-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

/* 楼盘信息部分样式 */
.property-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-group {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-value {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 10px;
    flex: 1;
}

/* 配套设施部分样式 */
.facilities-section {
    padding: 60px 0;
}

.facilities-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-height: 450px;
    overflow-x: hidden;
    gap: 15px;
}

.facility-item {
    flex: 1;
    min-width: 180px;
}

.facility-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.facility-image img {
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-item:hover .facility-image img {
    transform: scale(1.05);
}

/* 热销户型部分样式 */
.hot-units-section {
    padding: 60px 0;
}

.hot-units-grid {
    max-width: 1000px;
    margin: 0 auto;
    max-height: 680px;
    overflow-x: hidden;
}
.hot-units-grid .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.unit-item {
    margin-bottom: 30px;
}

.unit-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unit-item:hover .unit-image img {
    transform: scale(1.05);
}

/* 房产精选部分样式 */
.property-section {
    padding: 60px 0;
}

.property-scroll-container {
    position: relative;
    padding-right: 10px;
    margin-bottom: 2rem;
}

.property-scroll-container::-webkit-scrollbar {
    width: 5px;
}

.property-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.property-scroll-container::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

.property-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.property-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-right: 10px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 1.5rem;
    background-color: #f5f4ef;
}

.property-title {
    color: var(--main-color);
    font-size: 1.37rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-price {
    font-size: 0.94rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.property-area {
    font-size: 0.94rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.property-location {
    font-size: 0.94rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
    line-height: 1.4;
}

.property-location span{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.property-location i {
    color: var(--main-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.property-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.property-buttons .btn {
    background: var(--main-color);
    border: none;
    color: white;
    width: 440px;
    height: 60px;
    border-radius: 30px;
    font-weight: 300;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
}

.property-buttons .btn:hover {
    background: #7a1824;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 26, 37, 0.3);
}

.property-buttons .property-icon {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 10px;
}

/* 联系我们部分样式 */
.contact-section {
    padding: 60px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(139, 26, 37, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.submit-btn:hover {
    background: #7a1824;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 26, 37, 0.3);
}
/* 图片弹窗（Lightbox）样式 */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}
.image-modal.open { display: flex; }
.image-modal-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.6);
    border-radius: 6px;
    user-select: none;
}
.image-modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    line-height: 1;
    background: rgba(0,0,0,.4);
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
}
body.modal-open { overflow: hidden; touch-action: none; }
@media (max-width: 768px) {
    .image-modal-img { max-width: 95vw; max-height: 80vh; }
    .image-modal .close-btn { font-size: 22px; padding: 8px 10px; }
}
/* 响应式设计 */
@media (max-width: 992px) {
    /* 配套设施和热销户型部分 */
    .facilities-section,
    .hot-units-section {
        padding: 40px 0;
    }
    
    .facilities-section .section-title,
    .hot-units-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .facilities-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .facility-item {
        flex: none;
        width: 100%;
    }
    
    .facility-image {
        height: 120px;
    }
    
    .unit-image {
        height: 250px;
    }
    
    /* 楼盘地图部分 */
    .map-section {
        padding: 50px 0;
    }
    
    .map-section .section-title {
        font-size: 1.8rem;
    }
    
    .amap-container {
        height: 380px;
    }
    
    /* 项目亮点和楼盘信息部分 */
    .project-highlights-section,
    .property-info-section {
        padding: 40px 0;
    }
    
    .highlights-header .section-title,
    .info-header .section-title {
        font-size: 1.8rem;
    }
    
    .highlights-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .info-group {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* 项目详情主体部分 */
    .project-detail-section {
        padding: 1rem 0;
    }
    
    .project-info {
        margin-top: 1.5rem;
        height: auto;
        padding: 1.5rem;
    }
    
    .project-image {
        height: 300px;
    }
    
    .projectSwiper {
        height: 300px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    /* 房产精选部分 */
    .property-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .property-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .property-buttons .btn {
        width: 100%;
        max-width: 300px;
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    
    .property-buttons .property-icon {
        width: 25px;
        height: 25px;
        margin-left: 0;
        position: static;
    }
    
    /* 联系我们部分 */
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* 配套设施和热销户型部分 */
    .facilities-section,
    .hot-units-section {
        padding: 30px 0;
    }
    
    .facilities-section .section-title,
    .hot-units-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .facilities-grid {
        flex-direction: column;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .facility-item {
        flex: none;
        width: 100%;
    }
    
    .facility-image {
        height: 100px;
    }
    
    .unit-image {
        height: 200px;
    }
    
    .facility-item,
    .unit-item {
        margin-bottom: 0px;
        min-width: 120px;
    }
    .facility-image img {
        max-height: 75px;
    }
    
    /* 楼盘地图部分 */
    .map-section {
        padding: 45px 0;
    }
    
    .map-section .section-title {
        font-size: 1.6rem;
    }
    
    .map-address {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .amap-container {
        height: 350px;
    }
    
    /* 项目亮点和楼盘信息部分 */
    .project-highlights-section,
    .property-info-section {
        padding: 30px 0;
    }
    
    .highlights-header .section-title,
    .info-header .section-title {
        font-size: 1.6rem;
    }
    
    .highlights-content {
        padding: 0 15px;
    }
    
    .highlights-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-bank{
        margin-bottom: 10px;
    }
    .info-label {
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .info-value {
        margin-left: 0;
    }
    
    /* 项目详情主体部分 */
    .project-info {
        padding: 1rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .projectSwiper {
        height: 250px;
    }
    
    /* 房产精选部分 */
    .property-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-content {
        padding: 1rem;
    }
    
    .property-title {
        font-size: 1.1rem;
    }
    
    .property-price,
    .property-area,
    .property-location {
        font-size: 0.85rem;
    }
    
    .property-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .property-buttons .btn {
        width: 100%;
        max-width: none;
        font-size: 1rem;
        padding: 10px 15px;
        border-radius: 25px;
        position: relative;
        justify-content: center;
    }
    
    .property-buttons .property-icon {
        width: 20px;
        height: 20px;
        margin-left: 8px;
        position: static;
    }
    
    /* 联系我们部分 */
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    /* 配套设施和热销户型部分 */
    .facilities-section .section-title,
    .hot-units-section .section-title {
        font-size: 1.4rem;
    }
    
    .facility-image {
        height: auto;
    }
    
    .unit-image {
        height: 180px;
    }
    
    /* 项目亮点和楼盘信息部分 */
    .highlights-header .section-title,
    .info-header .section-title {
        font-size: 1.4rem;
    }
    
    .highlights-description {
        font-size: 0.9rem;
    }
    
    .info-group {
        padding: 15px;
    }
    
    .info-label,
    .info-value {
        font-size: 0.9rem;
    }
    
    /* 项目详情主体部分 */
    .project-detail-section {
        padding: 0.5rem 0;
    }
    
    .project-info {
        padding: 0.75rem;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .location-text {
        font-size: 0.85rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.8rem;
    }
    
    .highlights-list li {
        font-size: 0.8rem;
    }
    
    /* 楼盘地图部分 */
    .map-section {
        padding: 40px 0;
    }
    
    .map-section .section-title {
        font-size: 1.4rem;
    }
    
    .map-address {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .amap-container {
        height: 300px;
    }
    
    /* 房产精选响应式 */
    .property-section {
        padding: 30px 0;
    }
    
    .property-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .property-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .property-scroll-container {
        max-height: none;
        padding: 0;
        margin-bottom: 1rem;
    }

    .property-card {
        margin-bottom: 0.8rem;
        border-radius: 8px;
    }
    
    .property-image {
        height: 160px;
    }

    .property-content {
        padding: 0.8rem;
    }

    .property-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .property-price {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .property-area {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .property-location {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .property-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem;
    }
    .project-location {
        border-left:none;
    }

    .property-buttons .btn {
        width: 200px;
        font-size: 0.9rem;
        height: 40px;
        padding: 5px 8px;
        min-width: auto;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .property-buttons .property-icon {
        width: 16px;
        height: 16px;
        margin-left: 0;
        position: static;
    }
    
    /* 联系我们部分 */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 20px 12px;
        margin: 0 10px;
    }
    
    .form-control {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        min-width: 160px;
    }
}
/* Project Video */
.project-video-section { padding: 30px 0; }
.project-video-section .video-header { text-align: center; margin-bottom: 16px; }
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; border-radius: 8px; overflow: hidden; background: #000; }
.project-video, .project-video-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.project-video { object-fit: contain; background: #000; }

/* Education Resources */
.education-section { padding: 30px 0; }
.education-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 16px; }
.education-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.education-image img { width: 100%; height: 180px; object-fit: cover; display: block; }
.education-meta { padding: 10px 12px; }
.education-title { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 6px; }
.education-desc { font-size: 13px; color: #666; }
.education-text { margin-top: 12px; font-size: 14px; color: #555; }

@media (max-width: 992px) {
  .education-grid { grid-template-columns: repeat(2, 1fr); }
  .education-image img { height: 160px; }
}

@media (max-width: 576px) {
  .education-grid { grid-template-columns: 1fr; }
  .education-image img { height: 200px; }
  .project-video-section { padding: 24px 0; }
}