﻿ 
.work-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.work-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .work-image:hover {
        transform: scale(1.02);
    }

/* For larger screens, you might want to limit the image size */
@media (min-width: 768px) {
    .work-image-container {
        max-width: 600px;
        margin: 0 auto 1rem;
    }
}

/* Dark theme adjustments if needed */
[data-theme="dark"] .work-image,
.dark-mode .work-image {
    border: 2px solid rgba(167, 95, 19, 0.3);
}

/* Light theme adjustments if needed */
[data-theme="light"] .work-image,
.light-mode .work-image {
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fb9c16;
    border: 2px solid #fb9c16;
    background: transparent;
    transition: all 0.3s ease;
}

    .read-more-btn i {
        transition: transform 0.3s ease;
        font-size: 13px;
    }

    .read-more-btn:hover {
        background: linear-gradient(135deg, #fb9c16, #fb9c16);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
    }

        .read-more-btn:hover i {
            transform: translateX(4px);
        }

 
