/* css/key-annual-cycles.css */
.kac-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.kac-description {
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: rgb(0, 0, 0);
    white-space-collapse: collapse;
}

.kac-column {
    flex: 1;
    min-width: 300px;
    margin: 0 10px 20px;
}
.kac-column-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #001266;
}
.kac-blue-button-container {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}
.kac-blue-button {
    font-family: "Arial", Arial, sans-serif;
    background-color: rgb(15, 49, 76);
    border: none !important;
    color: #fff;
    padding: 10px 7px 9px 7px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.03em;
    cursor: pointer;
    border-radius: 50px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.kac-blue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.25);
    background-color: rgb(15, 49, 76) !important;
    color: #fff !important;
}
.kac-blue-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    border-style: none !important;
    background-color: rgb(15, 49, 76) !important;
    color: #fff !important;
}
.kac-blue-button::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 20px solid rgb(15, 49, 76);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}
.kac-blue-button:hover::after {
    filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.15));
}
.kac-blue-button:active::after {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.kac-blue-button.active {
    background-color: rgb(54, 201, 255) !important;
    color: #000;
}
.kac-blue-button.active:active {
    background-color: rgb(54, 201, 255) !important;
    color: #000;
}
.kac-blue-button.active:hover {
    background-color: rgb(54, 201, 255) !important;
    color: #000;
}
.kac-blue-button.active::after {
    border-top-color: rgb(54, 201, 255);
}
.kac-footnote {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kac-mini-button {
    width: 70px;
    height: 15px;
    background-color: rgb(54, 201, 255);
    border-radius: 25px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
}
.kac-mini-button::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(54, 201, 255);
}
.kac-footnote-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 992px) {
    .kac-column {
        flex-basis: calc(50% - 20px);
    }
}
@media (max-width: 768px) {
    .kac-column {
        flex-basis: 100%;
    }
}