.artesya-wrapper {
    font-family: 'Outfit', sans-serif;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.artesya-title {
    font-size: 32px;
    font-weight: 800;
    color: #001a3d;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #FF5E00;
}

.artesya-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.artesya-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 92, 180, 0.1);
    border-color: #045CB4;
}

.artesya-card .swiper-image-container {
    overflow: hidden;
    height: 240px;
}

.artesya-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.artesya-card:hover img {
    transform: scale(1.08);
}

.artesya-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artesya-date {
    font-size: 11px;
    font-weight: 800;
    color: #FF5E00;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.artesya-content h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.artesya-content h3 a {
    color: #001a3d;
    text-decoration: none;
    transition: color 0.2s;
}

.artesya-content h3 a:hover {
    color: #045CB4;
}

.artesya-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.artesya-btn {
    margin-top: auto;
    background: #045CB4;
    color: #fff !important;
    text-align: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.artesya-btn:hover {
    background: #001a3d;
    box-shadow: 0 8px 20px rgba(4, 92, 180, 0.3);
    transform: scale(1.02);
}

.swiper-pagination {
    margin-top: 35px;
    position: relative !important;
}

.swiper-pagination-bullet-active {
    background: #FF5E00 !important;
    width: 25px !important;
    border-radius: 5px !important;
}

@media(max-width:768px){
    .artesya-title{ font-size: 24px; padding-left: 15px; }
    .artesya-card .swiper-image-container { height: 180px; }
    .artesya-content { padding: 18px; }
    .artesya-content h3 { font-size: 17px; }
    .artesya-excerpt { font-size: 14px; }
}