/* Cloud Resources Block */
.cloud-resources {
    padding: 72px 0 96px;
    background: #ffffff; /* match other sections */
    border-top: 1px solid rgba(0, 58, 81, 0.06);
}

.cloud-resources .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cloud-resources-header {
    max-width: 100%;
    margin: 0 0 8px;
    text-align: left;
    padding: 20px 24px 8px;
}

.cloud-resources-title {
    font-family: "PP Neue Montreal", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #003a51;
    margin: 0 0 12px;
    letter-spacing: -0.4px;
}

.cloud-resources-description {
    font-size: 18px;
    line-height: 1.7;
    color: #334e68;
    margin: 0;
}

.cloud-resources-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 58, 81, 0.08);
    border: 1px solid rgba(0, 58, 81, 0.08);
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.cloud-resources-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cloud-resources-table thead {
    background: rgba(0, 140, 97, 0.04);
}

.cloud-resources-table th,
.cloud-resources-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 58, 81, 0.06);
}

.cloud-resources-table th {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #66788a;
}

.cloud-resources-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #003a51;
    font-weight: 500;
}

.cloud-resources-file-icon {
    position: relative;
    width: 28px;
    height: 34px;
    flex-shrink: 0;
}

.cloud-resources-file-top,
.cloud-resources-file-body {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 6px;
}

.cloud-resources-file-top {
    top: 0;
    height: 12px;
    background: #ff7f5c;
}

.cloud-resources-file-body {
    bottom: 0;
    top: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 58, 81, 0.18);
    box-shadow: 0 3px 10px rgba(0, 58, 81, 0.08);
}

.cloud-resources-name-text {
    display: inline-block;
    font-size: 16px;
    color: #003a51;
}

.cloud-resources-type {
    width: 1%;
    white-space: nowrap;
}

.cloud-resources-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 58, 81, 0.04);
    border: 1px solid rgba(0, 58, 81, 0.12);
    font-size: 12px;
    font-weight: 500;
    color: #003a51;
}

.cloud-resources-actions {
    text-align: right;
    width: 1%;
    white-space: nowrap;
}

.cloud-resources-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #008c61;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 140, 97, 0.26);
}

.cloud-resources-link:hover {
    background: #006b4a;
    color: #e9fff7;
    box-shadow: 0 5px 16px rgba(0, 140, 97, 0.35);
    transform: translateY(-1px);
}

.cloud-resources-link-icon {
    display: inline-flex;
}

.cloud-resources-empty {
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    color: #334e68;
}

@media (max-width: 768px) {
    .cloud-resources {
        padding: 56px 0 72px;
    }

    .cloud-resources .container {
        padding: 0 16px;
    }

    .cloud-resources-title {
        font-size: 26px;
    }

    .cloud-resources-description {
        font-size: 16px;
    }

    .cloud-resources-table th:nth-child(2),
    .cloud-resources-table td:nth-child(2) {
        display: none;
    }

    .cloud-resources-table th,
    .cloud-resources-table td {
        padding: 12px 14px;
    }
}


