.cim-fn-main {
    background-color: #f5f5f5;
}

.cim-fn-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px auto;
    padding: 40px 10px;
    max-width: 1200px;
}

.cim-fn-left {
    position: relative;
}

.cim-fn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cim-fn-title-box {
    position: absolute;
    bottom: 0px;
    left: 20px;
    background-color: #ff3019;
    color: white;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 30px;
    line-height: 1.2;
    font-family: 'Anek Devanagari', sans-serif;
}

.cim-fn-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cim-fn-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cim-fn-pdf-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-right: 16px;
}

.cim-fn-item-content {
    flex: 1;
}

.cim-fn-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333;
    font-family: 'Anek Devanagari' , sans-serif;
}

.cim-fn-separator {
    height: 1px;
    width: 100%;
    background: #d9d9d9;
    margin-bottom: 5px;
}

.cim-fn-date-download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #333;
}

.cim-fn-date {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.cim-fn-calendar-icon , .cim-fn-download-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    flex-shrink: 0;
}

.cim-fn-download {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
}



/* Desktop: (above 768px) */
@media (min-width: 769px) {
    .cim-fn-container {
        flex-direction: row;
    }

    .cim-fn-left {
        flex: 45%;
    }

    .cim-fn-date-download, .cim-fn-download{
        font-size: 15px;
    }

    .cim-fn-right {
        flex: 55%;
    }

    .cim-fn-title-box {
        font-size: 32px;
        padding: 24px 36px;
    }
}