﻿.app-card {
    display: flex;
    background: #fff;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    margin-bottom: 40px;
    transition: 0.3s;
}

    .app-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }

/* Left Image */
.app-img {
    width: 30%;
    min-height: 200px;
}
.ana-img {
    width: 15%;
    min-height: 200px;
    align-content:center;
}

.ana-img img{
    padding: 20px;
    object-fit: cover;
}
.app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content */
.app-content {
    width: 55%;
    padding: 28px 32px;
}

.app-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2c3a58;
}

/* Labels */
.app-label {
    display: block;
    color: #333;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
}

.app-section {
    margin-bottom: 2px;
}

    .app-section p {
        font-size: 16px;
        color: #444;
        margin: 0 0 10px;
    }

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #d8e5ff;
    color: #023478;
    padding: 0px 12px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 768px) {
    .app-card {
        flex-direction: column;
    }

    .app-img {
        width: 100%;
        height: 220px; /* adjust as needed */
    }

    .app-content {
        width: 100%;
        padding: 20px;
    }
    .ana-img {
        width: 100%;
        height: auto; /* adjust as needed */
        align-content:center
    }
}