﻿.app-welcome-text {
    font-family: 'Inter', sans-serif;
    line-height: 38px;
    color: #20213D;
}

/* App Content Grid */
.app-content-grid {
    display: grid;
    grid-template-columns: 1fr 316px;
    gap: 32px;
    margin-bottom: 32px;
}

/* App Card Styles */
.app-card {
    background: #FFFFFF;
    border: 3px solid #3C3D55;
    border-radius: 12px;
    padding: 24px;
}

.app-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #20213D;
    margin-bottom: 8px;
}

.app-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #3C3D55;
    margin-bottom: 16px;
}

/* App Monthly Digest Section */
.app-digest-section {
    position: relative;
}

.app-digest-items {
    position: relative;
    padding-left: 42px;
}

.app-lock-line {
    position: absolute;
    left: 20px;
    top: 42px;
    bottom: 79px;
    width: 2px;
    border: 1px dashed #ABACB6;
}



.app-view-all {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #667085;
    text-decoration: none;
}

.app-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #20213D;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-icon {
    width: 150px;
    max-width: 150px;
    height: 27.5px;
}

.app-arrow-icon {
    font-size: 20px;
    color: #20213D;
    width: 20px;
    height: 20px;
}

.app-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #58596D;
    margin: 0;
}

.app-store-access .app-item-type {
    color: #747485;
}

.app-store-access .app-item-title {
    color: #58596D;
}

.app-store-access .app-arrow-icon {
    color: #58596D;
}

.app-store-access .app-item-description {
    color: #747485;
}

/* App Quick Links Section */
.app-quick-links {
    position: relative;
}

    .app-quick-links .app-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

.app-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    margin-top: 16px;
    flex: 1;
}

.app-quick-link-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #FCFAF7;
    border-radius: 12px;
    text-decoration: none;
    gap: 8px;
}

    .app-quick-link-item:hover {
        transform: scale(1.02);
        border-color: #6B7280;
    }

.app-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.app-mini-icon {
    width: 10px;
    height: 9px;
    object-fit: contain;
}

.app-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 4px;
}

    .app-link-icon.green {
        background: #C6D8D2;
    }

    .app-link-icon.gray {
        background: #C7C8CE;
    }

    .app-link-icon.red {
        background: #E6BAB3;
    }

    .app-link-icon.blue {
        background: #D0DBF7;
    }

.app-link-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .app-link-content h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: #20213D;
        margin: 0;
    }

    .app-link-content p {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        line-height: 18px;
        color: #3C3D55;
        margin: 0;
    }

/* App Recommended Section */
.app-recommended-section {
    margin-top: 32px;
    border-top: 1px solid #3C3D55;
    padding-top: 32px;
}

.app-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .app-section-header h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #20213D;
        margin: 0;
    }

.app-nav-controls {
    display: flex;
    gap: 16px;
}

/* App Navigation Arrows */
.app-navigation-arrows {
    display: flex;
    gap: 16px;
    align-items: center;
}

.app-nav-arrow {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .app-nav-arrow:hover {
        opacity: 0.8;
    }

.app-nav-button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.app-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
}

.app-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .app-section-header h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #20213D;
        margin: 0;
    }

.app-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* App Article Card Components */
.app-article-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 4px;
    width: 337px;
    height: 198px;
    background: #FFFFFF;
    border: 3px solid #3C3D55;
    border-radius: 12px;
    flex: none;
    order: 0;
    flex-grow: 0;
    cursor: pointer;
}

    .app-article-card:hover {
        transform: translateY(-2px);
    }

.app-article-icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EADED2;
    border-radius: 4px;
    margin-bottom: 8px;
}

    .app-article-icon i {
        font-size: 24px;
        color: #000000;
    }

.app-article-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-article-category {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #58596D;
}

.app-article-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #20213D;
    margin: 0;
}