.angie-portfolio-5838 {
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 60px 0;
}

.port-header {
    text-align: center;
    margin-bottom: 40px;
}

.port-tagline {
    display: block;
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.port-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1f3a;
    margin: 0 0 15px;
}

.port-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.port-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.port-search {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.port-search-input {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.port-search-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.port-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.port-filter-btn {
    background: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.port-filter-btn:hover,
.port-filter-btn.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.port-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.port-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #f0f0f0;
}

.port-carousel::-webkit-scrollbar {
    height: 6px;
}

.port-carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.port-carousel::-webkit-scrollbar-thumb {
    background-color: #ff6b35;
    border-radius: 10px;
}

.port-item {
    flex: 0 0 calc(100% - 40px); /* 1 visible by default on desktop, assuming container handles width */
    max-width: 800px;
    animation: fadeInUp 0.5s ease forwards;
}

.port-item-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* 16:10 Aspect Ratio */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.port-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.port-item:hover .port-item-img {
    transform: scale(1.05);
}

.port-item-info {
    text-align: left;
}

.port-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f3a;
    margin: 0 0 5px;
}

.port-item-cat {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
}

.port-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.port-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.port-nav-btn:hover {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (min-width: 1200px) {
    .port-item {
        flex: 0 0 calc(50% - 15px); /* 2 items visible */
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .port-item {
        flex: 0 0 calc(70% - 15px);
    }
    .port-controls {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .port-title {
        font-size: 2.2rem;
    }
    .port-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .port-search {
        max-width: 100%;
    }
    .port-filters {
        justify-content: center;
    }
    .port-item {
        flex: 0 0 90vw;
    }
}