.content-category {
    padding-bottom: 5px;

    border-bottom: 1px solid #524125;
}

.autolayout-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    padding: 20px;
    gap: 20px;
}

.card-box {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;

    width: 240px;
    min-height: 380px;
    max-height: 450px;

    background-color: white;

    /* Shadow */
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;

    /* Inside auto layout */
    flex: none;
}

.card-visual-container {
    display: flex;
    justify-content: center;
    
    width: 200px;
    height: 160px;

    /* Inside auto layout */
    flex: none;

    background-color: white;
    border-radius: 5px;
    overflow: hidden;

    align-self: center;
}

.card-skills {
    color: #F2A019;
}

.content-button {
    justify-content: center;    
}
