/* Style Typography Page Specific Styles */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/* SVG placeholder styling */
.svg-placeholder {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.svg-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* 设计卡片描述文本 */
.design-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

/* Design Card Styles */
.design-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.design-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
    padding: 0.8rem 1rem;
    background-color: #333;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.card-content {
    padding: 1.5rem;
}

/* Individual Design Styles */
.design-1, .design-2, .design-3, .design-4, .design-5, .design-6 {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .svg-placeholder {
        height: 180px;
    }
    .page-title {
        font-size: 1.8rem;
    }    
}

@media (max-width: 480px) {
    .svg-placeholder {
        height: 150px;
    }
}
