.press-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.press-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.press-item {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.press-item.featured {
    border-left: 4px solid #8b4513;
    background: #fafafa;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.press-logo {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.press-date {
    font-size: 14px;
    color: #666;
    font-family: 'Courier New', monospace;
}

.press-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.press-item h3 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-item h3 a:hover {
    color: #8b4513;
}

.press-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.press-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.press-mention {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #d4b896;
}

.mention-source {
    font-weight: bold;
    color: #8b4513;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.mention-text {
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.mention-meta {
    font-size: 12px;
    color: #666;
}

.press-kit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.kit-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.kit-item h4 {
    color: #8b4513;
    margin-bottom: 15px;
    font-size: 16px;
}

.kit-item ul {
    list-style: none;
    padding: 0;
}

.kit-item li {
    padding: 5px 0;
    color: #666;
}

.kit-item li::before {
    content: "→ ";
    color: #8b4513;
    font-weight: bold;
}

.success-highlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #f0f8f0;
    border-radius: 12px;
    border-left: 4px solid #90c695;
}

.success-highlight blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-highlight cite {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .press-section {
        padding: 30px 20px;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .press-kit {
        grid-template-columns: 1fr;
    }
    
    .press-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.success-highlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #f0f8f0;
    border-radius: 12px;
    border-left: 4px solid #90c695;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-highlight blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-highlight cite {
    color: #666;
    font-size: 14px;
    margin-top: auto;
}