/* Theme Entries Frontend Styles */
.theme-entries-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.theme-entry-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-entry-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Testimonial Styles */
.testimonial-entry {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.testimonial-photo {
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

.testimonial-position,
.testimonial-company {
    font-weight: normal;
    color: #666;
}

.testimonial-rating {
    margin-top: 5px;
}

.rating-stars {
    color: #ffb900;
    font-size: 16px;
}

/* Portfolio Styles */
.portfolio-entry {
    text-align: center;
}

.portfolio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.portfolio-title {
    margin: 0 0 10px 0;
    color: #333;
}

.portfolio-description {
    margin-bottom: 15px;
    line-height: 1.6;
}

.portfolio-link {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.portfolio-link:hover {
    background: #005a87;
}

.portfolio-technologies {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Team Styles */
.team-entry {
    text-align: center;
}

.team-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-name {
    margin: 0 0 5px 0;
    color: #333;
}

.team-position {
    color: #0073aa;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-bio {
    margin-bottom: 10px;
    line-height: 1.6;
}

.team-email a {
    color: #0073aa;
    text-decoration: none;
}

.team-email a:hover {
    text-decoration: underline;
}

.team-social {
    margin-top: 10px;
}

.team-social a {
    display: inline-block;
    margin: 0 5px;
    font-size: 18px;
    text-decoration: none;
}

/* FAQ Styles */
.faq-entry {
    border-left: 4px solid #0073aa;
    padding-left: 15px;
}

.faq-question h3 {
    margin: 0 0 10px 0;
    color: #333;
    cursor: pointer;
}

.faq-answer {
    line-height: 1.6;
    color: #666;
}

/* Generic Entry Styles */
.generic-entry .entry-field {
    margin-bottom: 5px;
}

.generic-entry .entry-field strong {
    color: #333;
}

/* Featured Badge */
.featured-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #ffb900;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    margin-left: 10px;
}

/* No Entries Message */
.no-entries-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-entry {
        flex-direction: column;
        text-align: center;
    }
    
    .theme-entry-item {
        padding: 15px;
    }
    
    .portfolio-image img {
        margin-bottom: 10px;
    }
}