/* Konuşmalarım Sayfası Stilleri */

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
}

.videos-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.videos-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    padding: 1.5rem;
}

.description-text {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 2.5rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .videos-section {
        padding: 2.5rem 0;
    }

    .videos-container {
        gap: 2rem;
    }

    .video-description {
        padding: 1rem;
    }

    .description-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .videos-container {
        gap: 1.5rem;
    }
}

