@media screen and (orientation: portrait) {


    .mobile-time {
        display: flex;
    }

    .desktop-time {
        display: none;
    }

    .difficulty p {
        display: none;
    }

    .task-image-container {
        max-height: 128px;
        min-height: 128px;
        height: 128px;
    }

    .source-tag {
        display: none;

    }


    .subject {
        display: none;
    }


    .task-container {
        border-radius: var(--primary-border-radius);
        width: calc(100% - 32px);
        padding: 16px;
    }

    .task-content-container {
        flex-direction: column;
        gap: 12px;
    }

    .task-image-container {
        max-width: 200px;
    }

    .task-content-container p {
        font-size: 16px;
    }

    .task-material-content-container {
        gap: 12px;
    }

    .task-material-content-container p {
        font-size: 16px;
    }

    .task-hint-item p {
        font-size: 16px;
    }

    #scale-button {
        display: none;
    }

    .answer-label {
        display: none;
        font-size: 16px;
        min-width: 110px;
    }

    .answer-submit-button {
        font-size: 18px;
        height: 100%;
        font-weight: 500;
    }

    .task-header {
        justify-content: start !important;
        flex-direction: column !important;
    }

    .task-tab {
        font-size: 14px;
        padding: 2px 4px;
    }
}