/* 祈福留言区域样式 */
.blessing-section {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid var(--primary-gold);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), var(--texture-pattern);
}

.blessing-title {
    text-align: center;
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.blessing-title::before,
.blessing-title::after {
    content: '☸';
    color: var(--primary-gold);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.blessing-title::before {
    left: 35%;
}

.blessing-title::after {
    right: 35%;
}

.blessing-form {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-gold);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-red);
}

.blessings-list {
    max-width: 800px;
    margin: 0 auto;
}

.blessing-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-gold);
    position: relative;
}

.blessing-card::before {
    content: '🙏';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 10px;
}

.blessing-author {
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.blessing-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blessing-message {
    color: var(--text-dark);
    line-height: 1.6;
    text-align: justify;
}