{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/mb3XXxIDxtAGpVoT6A4E/MgQsNfApofVoUWmwfdBD/Sorting.js", "ssg:https://framerusercontent.com/modules/rr9b8UrXT1xuZ33yQBcA/ugFyFvDCibRMJllLM6ME/kE6c9730b.js", "ssg:https://framerusercontent.com/modules/35Ex3hQYTW3oyPLDOALE/5ZQaiU9LI9eq7tKTGW4R/n_ogxAzJJ.js", "ssg:https://framerusercontent.com/modules/4X0rynCGLagPJY7nBNfX/e0yR7VD5IawY5bgiSZNF/bzC6LXBfk.js", "ssg:https://framerusercontent.com/modules/bALLTR3pkBZzWmRVQwvy/u1I6GMGJzSE4PGSgLIxP/WITSgZRp1.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";// UI Constants\nconst FONT_FAMILY=\"Inter, sans-serif\";const BORDER_RADIUS=\"12px\";const BORDER_WIDTH=\"1px\";const ICON_SIZE=\"16px\";// Spacing Constants\nconst PADDING_VERTICAL=\"8px\";const PADDING_HORIZONTAL=\"12px\";const FILTER_GAP=\"10px\";const FILTER_BOTTOM_MARGIN=\"20px\";// Color Constants\nconst TEXT_COLOR=\"#1E293B\";const BORDER_COLOR=\"#CBD5E1\";const BACKGROUND_COLOR=\"#FFF\";const SELECTED_BACKGROUND_COLOR=\"#EEEDFD\";const ACTIVE_BORDER_COLOR=\"#594FEE\";const HOVER_BACKGROUND_COLOR=\"#F8FAFC\";const ACTIVE_TEXT_COLOR=\"#594FEE\";// Typography Constants\nconst TEXT_SIZE=\"14px\";const TEXT_WEIGHT=\"normal\";// Effects Constants\nconst BOX_SHADOW=\"0px 0.301px 1.505px -1.5px rgba(0, 0, 0, 0.18), 0px 1.144px 5.721px -3px rgba(0, 0, 0, 0.04)\";// Base styles for the select component\nconst baseFilterStyles={borderRadius:BORDER_RADIUS,border:`${BORDER_WIDTH} solid ${BORDER_COLOR}`,background:BACKGROUND_COLOR,boxShadow:BOX_SHADOW,padding:`${PADDING_VERTICAL} ${PADDING_HORIZONTAL}`,fontFamily:FONT_FAMILY,color:TEXT_COLOR,fontSize:TEXT_SIZE,fontWeight:TEXT_WEIGHT,boxSizing:\"border-box\",width:\"auto\",minWidth:\"100%\",maxWidth:\"none\",appearance:\"none\",whiteSpace:\"nowrap\",overflow:\"visible\",textOverflow:\"clip\",paddingRight:`calc(${PADDING_HORIZONTAL} + ${ICON_SIZE} + 2px)`,position:\"relative\"};export function SortCMS(Component){return props=>{const[sortOption,setSortOption]=useState(\"relevant\");const[originalOrder,setOriginalOrder]=useState([]);const[sortOptions,setSortOptions]=useState([]);const selectRef=useRef(null);// Helper function to extract number from string\nconst extractNumber=str=>{// Remove currency symbols, commas and other non-numeric characters except decimal points and minus signs\nconst matches=str.match(/-?[\\d,]+\\.?\\d*/g);if(!matches)return 0;// Get the first number found in the string\nconst numStr=matches[0].replace(/,/g,\"\");return parseFloat(numStr)||0;};useEffect(()=>{const layer=document.querySelector(`.${props.className}`);if(layer){const cards=Array.from(layer.querySelectorAll(\"[aria-label='cmsitem']\"));// Save the initial order of cards on first load\nif(originalOrder.length===0){setOriginalOrder([...cards]);}// Determine available sort options\nconst options=new Set;cards.forEach(card=>{card.querySelectorAll('[aria-label^=\"sort-\"]').forEach(el=>{const label=el.getAttribute(\"aria-label\");if(label&&label.startsWith(\"sort-\")){options.add(label.substring(5));}});});setSortOptions([\"relevant\",...Array.from(options)]);// Sorting logic\nif(sortOption!==\"relevant\"){const[field,direction]=sortOption.split(\"-\");cards.sort((a,b)=>{const aEl=a.querySelector(`[aria-label=\"sort-${field}\"]`);const bEl=b.querySelector(`[aria-label=\"sort-${field}\"]`);const aValue=(aEl===null||aEl===void 0?void 0:aEl.textContent)||\"\";const bValue=(bEl===null||bEl===void 0?void 0:bEl.textContent)||\"\";if(field===\"date\"){const dateA=parseDate(aValue);const dateB=parseDate(bValue);return direction===\"asc\"?dateA-dateB:dateB-dateA;}else if(field===\"price\"){const priceA=parsePrice(aValue);const priceB=parsePrice(bValue);return direction===\"asc\"?priceA-priceB:priceB-priceA;}else{// Try to find numbers in the strings\nconst hasNumberA=/-?[\\d,]+\\.?\\d*/g.test(aValue);const hasNumberB=/-?[\\d,]+\\.?\\d*/g.test(bValue);// If both strings contain numbers, sort numerically\nif(hasNumberA&&hasNumberB){const numA=extractNumber(aValue);const numB=extractNumber(bValue);return direction===\"asc\"?numA-numB:numB-numA;}// Fall back to string comparison if any value doesn't contain numbers\nreturn direction===\"asc\"?aValue.localeCompare(bValue):bValue.localeCompare(aValue);}});}else{// Restore the original order\ncards.splice(0,cards.length,...originalOrder);}// Re-append the sorted cards to maintain the new order\ncards.forEach(card=>{layer.appendChild(card);});}},[props.className,sortOption,originalOrder]);const parseDate=dateString=>{if(!dateString){return 0;}const[month,day,year]=dateString.split(\"/\").map(Number);return new Date(year+2e3,month-1,day).getTime()// Assuming 21st century dates\n;};const parsePrice=priceString=>{// Remove any non-digit characters except for the decimal point\nconst numericString=priceString.replace(/[^\\d.]/g,\"\");return parseFloat(numericString)||0;};const handleSortChange=value=>{setSortOption(value);setTimeout(()=>adjustSelectWidth(),0);};const adjustSelectWidth=()=>{const select=selectRef.current;if(select){const tempSpan=document.createElement(\"span\");tempSpan.style.visibility=\"hidden\";tempSpan.style.position=\"absolute\";tempSpan.style.whiteSpace=\"nowrap\";tempSpan.style.font=window.getComputedStyle(select).font;tempSpan.textContent=select.options[select.selectedIndex].text;document.body.appendChild(tempSpan);const textWidth=tempSpan.offsetWidth;document.body.removeChild(tempSpan);const extraSpace=parseInt(PADDING_HORIZONTAL)*2+parseInt(ICON_SIZE)+8;select.style.width=`${textWidth+extraSpace}px`;}};useEffect(()=>{adjustSelectWidth();},[sortOption]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",gap:FILTER_GAP,marginBottom:FILTER_BOTTOM_MARGIN,justifyContent:\"flex-start\",width:\"100%\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\",width:\"auto\"},children:[/*#__PURE__*/_jsxs(\"select\",{ref:selectRef,value:sortOption,onChange:e=>handleSortChange(e.target.value),style:{...baseFilterStyles,background:sortOption!==\"relevant\"?SELECTED_BACKGROUND_COLOR:BACKGROUND_COLOR,borderColor:sortOption!==\"relevant\"?ACTIVE_BORDER_COLOR:BORDER_COLOR,color:sortOption!==\"relevant\"?ACTIVE_TEXT_COLOR:TEXT_COLOR},children:[/*#__PURE__*/_jsx(\"option\",{value:\"relevant\",children:\"Sort by: Relevant\"}),sortOptions.filter(option=>option!==\"relevant\").map(option=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"option\",{value:`${option}-asc`,children:[option.charAt(0).toUpperCase()+option.slice(1),\" \",\"Ascending\"]},`${option}-asc`),/*#__PURE__*/_jsxs(\"option\",{value:`${option}-desc`,children:[option.charAt(0).toUpperCase()+option.slice(1),\" \",\"Descending\"]},`${option}-desc`)]}))]}),/*#__PURE__*/_jsx(\"span\",{style:{position:\"absolute\",right:PADDING_HORIZONTAL,top:\"50%\",transform:\"translateY(-50%)\",pointerEvents:\"none\",display:\"flex\",alignItems:\"center\",color:sortOption!==\"relevant\"?ACTIVE_TEXT_COLOR:TEXT_COLOR},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{width:ICON_SIZE,height:ICON_SIZE},children:/*#__PURE__*/_jsx(\"polyline\",{points:\"6 9 12 15 18 9\"})})})]})}),/*#__PURE__*/_jsx(Component,{...props}),/*#__PURE__*/_jsx(\"style\",{children:`\n                    .${props.className} .hidden {\n                        display: none;\n                    }\n                    select:hover {\n                        background-color: ${HOVER_BACKGROUND_COLOR} !important;\n                    }\n                    select {\n                        -webkit-appearance: none;\n                        -moz-appearance: none;\n                        appearance: none;\n                    }\n                `})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"SortCMS\":{\"type\":\"reactHoc\",\"name\":\"SortCMS\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Sorting.map", "// Generated by Framer (2a6858f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"q77ST1ry9\",\"CNcWt9wee\",\"WMP_Q_AAS\",\"tBJsJMqcD\"];const serializationHash=\"framer-Bdyz5\";const variantClassNames={CNcWt9wee:\"framer-v-13qzkxu\",q77ST1ry9:\"framer-v-1c98mg2\",tBJsJMqcD:\"framer-v-zex51b\",WMP_Q_AAS:\"framer-v-kil4kd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Grid Idle\":\"CNcWt9wee\",\"Grid Selected\":\"q77ST1ry9\",\"List Idle\":\"tBJsJMqcD\",\"List Selected\":\"WMP_Q_AAS\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,jh_4qN9BR:click!==null&&click!==void 0?click:props.jh_4qN9BR,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"q77ST1ry9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jh_4qN9BR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q77ST1ry9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapinhy1p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(jh_4qN9BR){const res=await jh_4qN9BR(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"CNcWt9wee\",\"WMP_Q_AAS\",\"tBJsJMqcD\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"CNcWt9wee\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"WMP_Q_AAS\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"tBJsJMqcD\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1c98mg2\",className,classNames),\"data-framer-name\":\"Grid Selected\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q77ST1ry9\",onTap:onTapinhy1p,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",borderBottomLeftRadius:100,borderBottomRightRadius:0,borderTopLeftRadius:100,borderTopRightRadius:0,...style},variants:{CNcWt9wee:{backgroundColor:\"rgba(18, 18, 18, 0.08)\"},tBJsJMqcD:{backgroundColor:\"rgba(18, 18, 18, 0.08)\",borderBottomLeftRadius:0,borderBottomRightRadius:100,borderTopLeftRadius:0,borderTopRightRadius:100},WMP_Q_AAS:{borderBottomLeftRadius:0,borderBottomRightRadius:100,borderTopLeftRadius:0,borderTopRightRadius:100}},...addPropertyOverrides({CNcWt9wee:{\"data-framer-name\":\"Grid Idle\"},tBJsJMqcD:{\"data-framer-name\":\"List Idle\"},WMP_Q_AAS:{\"data-framer-name\":\"List Selected\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9u47i\",\"data-framer-name\":\"Dashboard\",layoutDependency:layoutDependency,layoutId:\"TcFH29qPi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qu6ibs\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"D8zlZBzOb\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 3.5C0 2.56936 0 2.10404 0.122359 1.72746C0.369653 0.966363 0.966363 0.369653 1.72746 0.122359C2.10404 0 2.56936 0 3.5 0C4.43064 0 4.89596 0 5.27254 0.122359C6.03364 0.369653 6.63035 0.966363 6.87764 1.72746C7 2.10404 7 2.56936 7 3.5C7 4.43064 7 4.89596 6.87764 5.27254C6.63035 6.03364 6.03364 6.63035 5.27254 6.87764C4.89596 7 4.43064 7 3.5 7C2.56936 7 2.10404 7 1.72746 6.87764C0.966363 6.63035 0.369653 6.03364 0.122359 5.27254C0 4.89596 0 4.43064 0 3.5Z\" stroke=\"white\" stroke-width=\"1.5\"/>\\n<path d=\"M0 14.5C0 13.5694 0 13.104 0.122359 12.7275C0.369653 11.9664 0.966363 11.3697 1.72746 11.1224C2.10404 11 2.56936 11 3.5 11C4.43064 11 4.89596 11 5.27254 11.1224C6.03364 11.3697 6.63035 11.9664 6.87764 12.7275C7 13.104 7 13.5694 7 14.5C7 15.4306 7 15.896 6.87764 16.2725C6.63035 17.0336 6.03364 17.6303 5.27254 17.8776C4.89596 18 4.43064 18 3.5 18C2.56936 18 2.10404 18 1.72746 17.8776C0.966363 17.6303 0.369653 17.0336 0.122359 16.2725C0 15.896 0 15.4306 0 14.5Z\" stroke=\"white\" stroke-width=\"1.5\"/>\\n<path d=\"M11 3.5C11 2.56936 11 2.10404 11.1224 1.72746C11.3697 0.966363 11.9664 0.369653 12.7275 0.122359C13.104 0 13.5694 0 14.5 0C15.4306 0 15.896 0 16.2725 0.122359C17.0336 0.369653 17.6303 0.966363 17.8776 1.72746C18 2.10404 18 2.56936 18 3.5C18 4.43064 18 4.89596 17.8776 5.27254C17.6303 6.03364 17.0336 6.63035 16.2725 6.87764C15.896 7 15.4306 7 14.5 7C13.5694 7 13.104 7 12.7275 6.87764C11.9664 6.63035 11.3697 6.03364 11.1224 5.27254C11 4.89596 11 4.43064 11 3.5Z\" stroke=\"white\" stroke-width=\"1.5\"/>\\n<path d=\"M11 14.5C11 13.5694 11 13.104 11.1224 12.7275C11.3697 11.9664 11.9664 11.3697 12.7275 11.1224C13.104 11 13.5694 11 14.5 11C15.4306 11 15.896 11 16.2725 11.1224C17.0336 11.3697 17.6303 11.9664 17.8776 12.7275C18 13.104 18 13.5694 18 14.5C18 15.4306 18 15.896 17.8776 16.2725C17.6303 17.0336 17.0336 17.6303 16.2725 17.8776C15.896 18 15.4306 18 14.5 18C13.5694 18 13.104 18 12.7275 17.8776C11.9664 17.6303 11.3697 17.0336 11.1224 16.2725C11 15.896 11 15.4306 11 14.5Z\" stroke=\"white\" stroke-width=\"1.5\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-u78v01\",\"data-framer-name\":\"Dashboard\",layoutDependency:layoutDependency,layoutId:\"P1QtRxPlf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qxn8ig\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"cerA5xQSE\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 3.5C0 2.56936 0 2.10404 0.122359 1.72746C0.369653 0.966363 0.966363 0.369653 1.72746 0.122359C2.10404 0 2.56936 0 3.5 0C4.43064 0 4.89596 0 5.27254 0.122359C6.03364 0.369653 6.63035 0.966363 6.87764 1.72746C7 2.10404 7 2.56936 7 3.5C7 4.43064 7 4.89596 6.87764 5.27254C6.63035 6.03364 6.03364 6.63035 5.27254 6.87764C4.89596 7 4.43064 7 3.5 7C2.56936 7 2.10404 7 1.72746 6.87764C0.966363 6.63035 0.369653 6.03364 0.122359 5.27254C0 4.89596 0 4.43064 0 3.5Z\" stroke=\"#121212\" stroke-width=\"1.5\"/>\\n<path d=\"M0 14.5C0 13.5694 0 13.104 0.122359 12.7275C0.369653 11.9664 0.966363 11.3697 1.72746 11.1224C2.10404 11 2.56936 11 3.5 11C4.43064 11 4.89596 11 5.27254 11.1224C6.03364 11.3697 6.63035 11.9664 6.87764 12.7275C7 13.104 7 13.5694 7 14.5C7 15.4306 7 15.896 6.87764 16.2725C6.63035 17.0336 6.03364 17.6303 5.27254 17.8776C4.89596 18 4.43064 18 3.5 18C2.56936 18 2.10404 18 1.72746 17.8776C0.966363 17.6303 0.369653 17.0336 0.122359 16.2725C0 15.896 0 15.4306 0 14.5Z\" stroke=\"#121212\" stroke-width=\"1.5\"/>\\n<path d=\"M11 3.5C11 2.56936 11 2.10404 11.1224 1.72746C11.3697 0.966363 11.9664 0.369653 12.7275 0.122359C13.104 0 13.5694 0 14.5 0C15.4306 0 15.896 0 16.2725 0.122359C17.0336 0.369653 17.6303 0.966363 17.8776 1.72746C18 2.10404 18 2.56936 18 3.5C18 4.43064 18 4.89596 17.8776 5.27254C17.6303 6.03364 17.0336 6.63035 16.2725 6.87764C15.896 7 15.4306 7 14.5 7C13.5694 7 13.104 7 12.7275 6.87764C11.9664 6.63035 11.3697 6.03364 11.1224 5.27254C11 4.89596 11 4.43064 11 3.5Z\" stroke=\"#121212\" stroke-width=\"1.5\"/>\\n<path d=\"M11 14.5C11 13.5694 11 13.104 11.1224 12.7275C11.3697 11.9664 11.9664 11.3697 12.7275 11.1224C13.104 11 13.5694 11 14.5 11C15.4306 11 15.896 11 16.2725 11.1224C17.0336 11.3697 17.6303 11.9664 17.8776 12.7275C18 13.104 18 13.5694 18 14.5C18 15.4306 18 15.896 17.8776 16.2725C17.6303 17.0336 17.0336 17.6303 16.2725 17.8776C15.896 18 15.4306 18 14.5 18C13.5694 18 13.104 18 12.7275 17.8776C11.9664 17.6303 11.3697 17.0336 11.1224 16.2725C11 15.896 11 15.4306 11 14.5Z\" stroke=\"#121212\" stroke-width=\"1.5\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19c5nfi\",\"data-framer-name\":\"Bulleted list\",layoutDependency:layoutDependency,layoutId:\"I1090:132368;936:76825\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vkmjx\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I1090:132368;936:76825;1037:45127\",svg:'<svg width=\"16\" height=\"12\" viewBox=\"-1 -1 16 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14 10H4M14 5H4M14 0H4M1 10H0M1 5H0M1 0H0\" stroke=\"#F5F5F5\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-103t2ig\",\"data-framer-name\":\"Bulleted list\",layoutDependency:layoutDependency,layoutId:\"PfpkuBCSC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jpf5br\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"j9Ynbu4dS\",svg:'<svg width=\"16\" height=\"12\" viewBox=\"-1 -1 16 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14 10H4M14 5H4M14 0H4M1 10H0M1 5H0M1 0H0\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Bdyz5.framer-18rtb0u, .framer-Bdyz5 .framer-18rtb0u { display: block; }\",\".framer-Bdyz5.framer-1c98mg2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 12px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bdyz5 .framer-1e9u47i, .framer-Bdyz5 .framer-u78v01, .framer-Bdyz5 .framer-19c5nfi, .framer-Bdyz5 .framer-103t2ig { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-Bdyz5 .framer-1qu6ibs, .framer-Bdyz5 .framer-qxn8ig { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-Bdyz5 .framer-1vkmjx, .framer-Bdyz5 .framer-jpf5br { flex: none; height: 10px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bdyz5.framer-1c98mg2 { gap: 0px; } .framer-Bdyz5.framer-1c98mg2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Bdyz5.framer-1c98mg2 > :first-child { margin-left: 0px; } .framer-Bdyz5.framer-1c98mg2 > :last-child { margin-right: 0px; } }\",\".framer-Bdyz5.framer-v-kil4kd.framer-1c98mg2, .framer-Bdyz5.framer-v-zex51b.framer-1c98mg2 { padding: 12px 16px 12px 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 52\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"CNcWt9wee\":{\"layout\":[\"auto\",\"auto\"]},\"WMP_Q_AAS\":{\"layout\":[\"auto\",\"auto\"]},\"tBJsJMqcD\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jh_4qN9BR\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkE6c9730b=withCSS(Component,css,\"framer-Bdyz5\");export default FramerkE6c9730b;FramerkE6c9730b.displayName=\"Release Schedule/Table View Trigger\";FramerkE6c9730b.defaultProps={height:48,width:52};addPropertyControls(FramerkE6c9730b,{variant:{options:[\"q77ST1ry9\",\"CNcWt9wee\",\"WMP_Q_AAS\",\"tBJsJMqcD\"],optionTitles:[\"Grid Selected\",\"Grid Idle\",\"List Selected\",\"List Idle\"],title:\"Variant\",type:ControlType.Enum},jh_4qN9BR:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerkE6c9730b,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkE6c9730b\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"52\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CNcWt9wee\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WMP_Q_AAS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tBJsJMqcD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jh_4qN9BR\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kE6c9730b.map", "// Generated by Framer (648e021)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ReleaseScheduleTableViewTrigger from\"https://framerusercontent.com/modules/rr9b8UrXT1xuZ33yQBcA/ugFyFvDCibRMJllLM6ME/kE6c9730b.js\";const ReleaseScheduleTableViewTriggerFonts=getFonts(ReleaseScheduleTableViewTrigger);const cycleOrder=[\"c9FO7BvHQ\",\"wi_Gx54Ao\"];const serializationHash=\"framer-9efw8\";const variantClassNames={c9FO7BvHQ:\"framer-v-1hpqm7r\",wi_Gx54Ao:\"framer-v-1cygnrl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Grid:\"c9FO7BvHQ\",List:\"wi_Gx54Ao\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,k691cruDG:click!==null&&click!==void 0?click:props.k691cruDG,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"c9FO7BvHQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,k691cruDG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"c9FO7BvHQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap156m5gl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(k691cruDG){const res=await k691cruDG(...args);if(res===false)return false;}});const jh_4qN9BR3exmf6=activeVariantCallback(async(...args)=>{setVariant(\"c9FO7BvHQ\");});const jh_4qN9BRua8322=activeVariantCallback(async(...args)=>{setVariant(\"wi_Gx54Ao\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hpqm7r\",className,classNames),\"data-framer-name\":\"Grid\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"c9FO7BvHQ\",onTap:onTap156m5gl,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wi_Gx54Ao:{\"data-framer-name\":\"List\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8tyt0-container\",layoutDependency:layoutDependency,layoutId:\"KFdE3hgb1-container\",children:/*#__PURE__*/_jsx(ReleaseScheduleTableViewTrigger,{height:\"100%\",id:\"KFdE3hgb1\",layoutId:\"KFdE3hgb1\",variant:\"q77ST1ry9\",width:\"100%\",...addPropertyOverrides({wi_Gx54Ao:{jh_4qN9BR:jh_4qN9BR3exmf6,variant:\"CNcWt9wee\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yyj9pa-container\",layoutDependency:layoutDependency,layoutId:\"deWKljjak-container\",children:/*#__PURE__*/_jsx(ReleaseScheduleTableViewTrigger,{height:\"100%\",id:\"deWKljjak\",jh_4qN9BR:jh_4qN9BRua8322,layoutId:\"deWKljjak\",variant:\"tBJsJMqcD\",width:\"100%\",...addPropertyOverrides({wi_Gx54Ao:{jh_4qN9BR:undefined,variant:\"WMP_Q_AAS\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9efw8.framer-1qh7m9, .framer-9efw8 .framer-1qh7m9 { display: block; }\",\".framer-9efw8.framer-1hpqm7r { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9efw8 .framer-r8tyt0-container, .framer-9efw8 .framer-1yyj9pa-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9efw8.framer-1hpqm7r { gap: 0px; } .framer-9efw8.framer-1hpqm7r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9efw8.framer-1hpqm7r > :first-child { margin-left: 0px; } .framer-9efw8.framer-1hpqm7r > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 104\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wi_Gx54Ao\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"k691cruDG\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern_ogxAzJJ=withCSS(Component,css,\"framer-9efw8\");export default Framern_ogxAzJJ;Framern_ogxAzJJ.displayName=\"Release Schedule/View selection\";Framern_ogxAzJJ.defaultProps={height:48,width:104};addPropertyControls(Framern_ogxAzJJ,{variant:{options:[\"c9FO7BvHQ\",\"wi_Gx54Ao\"],optionTitles:[\"Grid\",\"List\"],title:\"Variant\",type:ControlType.Enum},k691cruDG:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framern_ogxAzJJ,[{explicitInter:true,fonts:[]},...ReleaseScheduleTableViewTriggerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern_ogxAzJJ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"k691cruDG\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wi_Gx54Ao\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"104\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n_ogxAzJJ.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Superfields from\"https://framerusercontent.com/modules/1o5Bk6b6qvbR58A6b2Ej/JanKvtE2hGNT03F5pam4/Superfields.js\";import SortingSelector from\"https://framerusercontent.com/modules/3uGnzxOH6mP18wRhuwQt/kDBqtOs0ozCwOuKZkjnB/SortingSelector.js\";import ResetFiltersButton from\"https://framerusercontent.com/modules/kf2LBfm1QDK0TMFrHROs/dFGyUBBdLeqI8b5zdCH2/ResetFiltersButton.js\";import Filter from\"https://framerusercontent.com/modules/LYyAFjx6EnDQcWGl8jCk/fGquL0EGrtQwCJnnnvxX/Filter.js\";import{SortCMS}from\"https://framerusercontent.com/modules/mb3XXxIDxtAGpVoT6A4E/MgQsNfApofVoUWmwfdBD/Sorting.js\";import Media,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/4bO26a9pyVr3Kmq3hCXn/oo2HzLUAxsqMPYYCju5m/e8pflVCpi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gxx7Dk0IiOGyHzVUohax/G2tT0DWPG9wC5sY6pvAH/Aqbxg9j8g.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/byqVtKduHUyoGYxr6mIK/dO7yf4CdQdIQJmN1qHWB/zDmPpK8Kg.js\";import ComponentLoadMore from\"https://framerusercontent.com/modules/nizz3Rh8G7ByyD8DXIEr/o1G2KmzIxvVXF0risRm5/BycMbHAra.js\";import ReleaseScheduleViewSelection from\"https://framerusercontent.com/modules/35Ex3hQYTW3oyPLDOALE/5ZQaiU9LI9eq7tKTGW4R/n_ogxAzJJ.js\";import MainAdComponent from\"https://framerusercontent.com/modules/kajCdqKGpc0wd5Ngvm3n/RT13kb3wkxG8knFmBA3M/YRGLURA0w.js\";import TimelineTimelineCards from\"https://framerusercontent.com/modules/dWFV2iX1pQqpgm86bO71/biqCjBZcfC9gTMLz9xw7/yW0n298zH.js\";const MainAdComponentFonts=getFonts(MainAdComponent);const TimelineTimelineCardsFonts=getFonts(TimelineTimelineCards);const ComponentLoadMoreFonts=getFonts(ComponentLoadMore);const MotionDivSortCMS1h87yhm=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"Wm5_ujfl4\",override:SortCMS,scopeId:\"bzC6LXBfk\"});const FilterFonts=getFonts(Filter);const SortingSelectorFonts=getFonts(SortingSelector);const ReleaseScheduleViewSelectionFonts=getFonts(ReleaseScheduleViewSelection);const ResetFiltersButtonFonts=getFonts(ResetFiltersButton);const SuperfieldsFonts=getFonts(Superfields);const MotionDivSortCMS1cv8ia6=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"OZXhuT67z\",override:SortCMS,scopeId:\"bzC6LXBfk\"});const cycleOrder=[\"aL2PgFBSh\",\"gtPygsIBY\",\"QYawqc_hZ\",\"l9x_kfWLn\",\"W3GTcd2eF\",\"dlQ4sxx6q\"];const serializationHash=\"framer-Vnfv9\";const variantClassNames={aL2PgFBSh:\"framer-v-19iq8en\",dlQ4sxx6q:\"framer-v-1bg6bq6\",gtPygsIBY:\"framer-v-ft1zt0\",l9x_kfWLn:\"framer-v-1v0mkty\",QYawqc_hZ:\"framer-v-1hilek0\",W3GTcd2eF:\"framer-v-1k2qvyn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[0,0,1,1],type:\"tween\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"OLARoiktx\":return\"Uu6bLLdSm\";case\"PfkV6_kIu\":return\"Cai5KABBa\";case\"LaAgokux_\":return\"LLroe0F5B\";case\"kkLMQ9sdy\":return\"V5e4FDaWt\";case\"lr0xxR1Dn\":return\"KFdhv_9Og\";default:return\"D2KAMEYQR\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const query=prequery=>prequery({from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"Wm5_ujfl4\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const query1=prequery=>prequery({from:{alias:\"OZXhuT67z\",data:Media,type:\"Collection\"},select:[{collection:\"OZXhuT67z\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"id\",type:\"Identifier\"}]});const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"OZXhuT67z\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const query2=prequery=>prequery({from:{alias:\"VZI88C7cp\",data:Media,type:\"Collection\"},select:[{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const QueryData2=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"VZI88C7cp\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const query3=prequery=>prequery({from:{alias:\"KNImi7VbE\",data:Media,type:\"Collection\"},select:[{collection:\"KNImi7VbE\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"id\",type:\"Identifier\"}]});const QueryData3=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"KNImi7VbE\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const query4=prequery=>prequery({from:{alias:\"wAyfP4ZtD\",data:Media,type:\"Collection\"},select:[{collection:\"wAyfP4ZtD\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"id\",type:\"Identifier\"}]});const QueryData4=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"wAyfP4ZtD\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Grid - Tablet\":\"W3GTcd2eF\",\"Grid View - Desktop\":\"aL2PgFBSh\",\"Grid View - Mobile\":\"QYawqc_hZ\",\"List Tablet\":\"dlQ4sxx6q\",\"List View - Desktop\":\"gtPygsIBY\",\"List View Mobile\":\"l9x_kfWLn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aL2PgFBSh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Sg9XJIdUoWm5_ujfl4,lre4IHG4hWm5_ujfl4,D_TdaeXA9Wm5_ujfl4,RBo7N94bAWm5_ujfl4,f9Ceg3jxyWm5_ujfl4,KeKnKyvk0Wm5_ujfl4,aM3ixSDDZWm5_ujfl4,KQ8skpJyrWm5_ujfl4,tKzx2N577Wm5_ujfl4,Euza5F551Wm5_ujfl4,rqHDlLZoEWm5_ujfl4,iFRopJbTcWm5_ujfl4,FYxzinrPYWm5_ujfl4,idWm5_ujfl4,Sg9XJIdUoOZXhuT67z,lre4IHG4hOZXhuT67z,D_TdaeXA9OZXhuT67z,RBo7N94bAOZXhuT67z,f9Ceg3jxyOZXhuT67z,KeKnKyvk0OZXhuT67z,aM3ixSDDZOZXhuT67z,KQ8skpJyrOZXhuT67z,tKzx2N577OZXhuT67z,Euza5F551OZXhuT67z,rqHDlLZoEOZXhuT67z,iFRopJbTcOZXhuT67z,FYxzinrPYOZXhuT67z,idOZXhuT67z,Sg9XJIdUoVZI88C7cp,lre4IHG4hVZI88C7cp,KQ8skpJyrVZI88C7cp,tKzx2N577VZI88C7cp,iFRopJbTcVZI88C7cp,FYxzinrPYVZI88C7cp,idVZI88C7cp,Sg9XJIdUoKNImi7VbE,lre4IHG4hKNImi7VbE,D_TdaeXA9KNImi7VbE,RBo7N94bAKNImi7VbE,tKzx2N577KNImi7VbE,iFRopJbTcKNImi7VbE,FYxzinrPYKNImi7VbE,idKNImi7VbE,Sg9XJIdUowAyfP4ZtD,lre4IHG4hwAyfP4ZtD,D_TdaeXA9wAyfP4ZtD,RBo7N94bAwAyfP4ZtD,aM3ixSDDZwAyfP4ZtD,KQ8skpJyrwAyfP4ZtD,tKzx2N577wAyfP4ZtD,iFRopJbTcwAyfP4ZtD,FYxzinrPYwAyfP4ZtD,idwAyfP4ZtD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aL2PgFBSh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const k691cruDG12ykyr7=activeVariantCallback(async(...args)=>{setVariant(\"gtPygsIBY\");});const k691cruDG1n6oihy=activeVariantCallback(async(...args)=>{setVariant(\"aL2PgFBSh\");});const k691cruDG1qnrlao=activeVariantCallback(async(...args)=>{setVariant(\"dlQ4sxx6q\");});const k691cruDG15lgq4f=activeVariantCallback(async(...args)=>{setVariant(\"W3GTcd2eF\");});const k691cruDG1lhp2ug=activeVariantCallback(async(...args)=>{setVariant(\"l9x_kfWLn\");});const k691cruDGrk2nvg=activeVariantCallback(async(...args)=>{setVariant(\"QYawqc_hZ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"l9x_kfWLn\")return false;return true;};const isDisplayed1=()=>{if([\"gtPygsIBY\",\"dlQ4sxx6q\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"QYawqc_hZ\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"QYawqc_hZ\")return true;return false;};const isDisplayed4=()=>{if([\"gtPygsIBY\",\"dlQ4sxx6q\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"gtPygsIBY\",\"QYawqc_hZ\",\"l9x_kfWLn\",\"W3GTcd2eF\",\"dlQ4sxx6q\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"W3GTcd2eF\")return true;return false;};const isDisplayed7=()=>{if([\"gtPygsIBY\",\"l9x_kfWLn\",\"dlQ4sxx6q\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"l9x_kfWLn\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19iq8en\",className,classNames),\"data-framer-name\":\"Grid View - Desktop\",layoutDependency:layoutDependency,layoutId:\"aL2PgFBSh\",ref:refBinding,style:{...style},...addPropertyOverrides({dlQ4sxx6q:{\"data-framer-name\":\"List Tablet\"},gtPygsIBY:{\"data-framer-name\":\"List View - Desktop\"},l9x_kfWLn:{\"data-framer-name\":\"List View Mobile\"},QYawqc_hZ:{\"data-framer-name\":\"Grid View - Mobile\"},W3GTcd2eF:{\"data-framer-name\":\"Grid - Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-adkb5k\",\"data-framer-name\":\"Banner Ad Unit\",layoutDependency:layoutDependency,layoutId:\"Ggdd732Go\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",...addPropertyOverrides({l9x_kfWLn:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||5998)-80-1526.8)/2+0+0)+0+0},QYawqc_hZ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||29964)-80-1332.8)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-162fp7l-container\",layoutDependency:layoutDependency,layoutId:\"qZYBqGekQ-container\",nodeId:\"qZYBqGekQ\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(MainAdComponent,{height:\"100%\",id:\"qZYBqGekQ\",layoutId:\"qZYBqGekQ\",style:{height:\"100%\",width:\"100%\"},variant:\"JardhQMUw\",width:\"100%\",...addPropertyOverrides({dlQ4sxx6q:{variant:\"LSx_b5ftV\"},l9x_kfWLn:{variant:\"q5Cc48hoT\"},QYawqc_hZ:{variant:\"q5Cc48hoT\"},W3GTcd2eF:{variant:\"LSx_b5ftV\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mkvogh\",layoutDependency:layoutDependency,layoutId:\"ssnQGOWSM\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c9k3s0\",layoutDependency:layoutDependency,layoutId:\"PuYHkdjtl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b3ngfu\",layoutDependency:layoutDependency,layoutId:\"ysDsDyrIk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Schedule\"})}),className:\"framer-1t52w7g\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"J_UOcuXlu\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yvoxsc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nrVA5Bpbt-container\",nodeId:\"nrVA5Bpbt\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[2],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[1],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[0],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Release Schedule\",fieldType:\"option\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"nrVA5Bpbt\",layoutId:\"nrVA5Bpbt\",multipleOptionsNoneOption:\"\",multiSelect:false,optionFieldNames:[\"\"],options:{allOption:false,allText:\"All\",defaultValue:\"Upcoming Releases\",optionMode:\"manual\",optionOrder:\"default\",optionValues:[\"Upcoming Releases\",\"Previous Releases\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\",...addPropertyOverrides({QYawqc_hZ:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p1dipe\",layoutDependency:layoutDependency,layoutId:\"eYx7J1IKm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Format\"})}),className:\"framer-z630kw\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"EH15Nruia\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1meb68s\",layoutDependency:layoutDependency,layoutId:\"mFSNjYtnZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h82o2p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nYWGDRKab-container\",nodeId:\"nYWGDRKab\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index1)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[5],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[4],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[3],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Author\",fieldType:\"multipleOptions\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"nYWGDRKab\",layoutId:\"nYWGDRKab\",multipleOptionsNoneOption:\"None\",multiSelect:false,optionFieldNames:[\"Category\"],options:{allOption:true,allText:\"All\",defaultValue:\"\",optionMode:\"auto\",optionOrder:\"default\",optionValues:[\"Writing\",\"Videos\",\"Audio Drama\",\"Games\",\"Adult novels\",\"Children\u2019s book\",\"Comic books\",\"Graphic novel\",\"Omnibus\",\"Junior reader\",\"Short story\",\"Single issue comic\",\"YA novel\",\"Young adult novels\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\",...addPropertyOverrides({QYawqc_hZ:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ncj88i\",layoutDependency:layoutDependency,layoutId:\"nrhl3ZNQV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Release Date\"})}),className:\"framer-1v1dt2y\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gSXsBModi\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u1lird\",layoutDependency:layoutDependency,layoutId:\"fTGaXrOZP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e2qzd3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h15wpz9oR-container\",nodeId:\"h15wpz9oR\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(SortingSelector,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:\"12px 24px 12px 24px\",radius:\"8px\",selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"rgb(0, 0, 0)\",padding:\"12px 24px 12px 24px\",radius:\"8px\",shadows:\"\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",id:\"h15wpz9oR\",layoutId:\"h15wpz9oR\",options:[{booleanSort:\"yesNo\",dateSort:\"ascending\",defaultValue:true,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Ascending\",type:\"option\"},{booleanSort:\"yesNo\",dateSort:\"descending\",defaultValue:false,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Descending\",type:\"option\"}],selectorType:\"dropdown\",superfieldsId:0,transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\",...addPropertyOverrides({QYawqc_hZ:{dropdownStyle:{arrow:{gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:\"12px 24px 12px 24px\",radius:\"8px\",shadows:\"\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ydx0ka-container\",layoutDependency:layoutDependency,layoutId:\"mcB6QmCp6-container\",nodeId:\"mcB6QmCp6\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ReleaseScheduleViewSelection,{height:\"100%\",id:\"mcB6QmCp6\",k691cruDG:k691cruDG12ykyr7,layoutId:\"mcB6QmCp6\",variant:\"c9FO7BvHQ\",width:\"100%\",...addPropertyOverrides({dlQ4sxx6q:{k691cruDG:k691cruDG15lgq4f,variant:\"wi_Gx54Ao\"},gtPygsIBY:{k691cruDG:k691cruDG1n6oihy,variant:\"wi_Gx54Ao\"},W3GTcd2eF:{k691cruDG:k691cruDG1qnrlao}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({QYawqc_hZ:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||29964)-80-1332.8)/2+100+10)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dye1fy-container\",layoutDependency:layoutDependency,layoutId:\"zbrk2B4af-container\",nodeId:\"zbrk2B4af\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ReleaseScheduleViewSelection,{height:\"100%\",id:\"zbrk2B4af\",k691cruDG:k691cruDG1lhp2ug,layoutId:\"zbrk2B4af\",variant:\"c9FO7BvHQ\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vyfz7q\",layoutDependency:layoutDependency,layoutId:\"e4DWeLLXT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v125tn\",layoutDependency:layoutDependency,layoutId:\"zmnOqiTXb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Schedule\"})}),className:\"framer-1pk0p3p\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jqOhBE3QE\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1spvxjb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y78eNMtbU-container\",nodeId:\"Y78eNMtbU\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index2)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[8],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[7],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[6],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Release Schedule\",fieldType:\"text\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"Y78eNMtbU\",layoutId:\"Y78eNMtbU\",multipleOptionsNoneOption:\"\",multiSelect:false,optionFieldNames:[],options:{allOption:true,allText:\"All\",defaultValue:\"Upcoming Release\",optionMode:\"auto\",optionOrder:\"default\",optionValues:[\"Upcoming releases\",\"Recently released\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\",...addPropertyOverrides({dlQ4sxx6q:{options:{allOption:true,allText:\"All\",defaultValue:\"Upcoming Releases\",optionMode:\"manual\",optionOrder:\"default\",optionValues:[\"Upcoming Releases\",\"Previous Releases\"],placeholder:\"[Preview project]\"}},gtPygsIBY:{fieldType:\"option\",options:{allOption:true,allText:\"All\",defaultValue:\"Upcoming Releases\",optionMode:\"manual\",optionOrder:\"default\",optionValues:[\"Upcoming Releases\",\"Previous Releases\"],placeholder:\"[Preview project]\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1irioqf\",layoutDependency:layoutDependency,layoutId:\"OmRGRn7io\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Format\"})}),className:\"framer-1w4y5yr\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"LkDnxttLx\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z0wgf9\",layoutDependency:layoutDependency,layoutId:\"y81KQ6h4d\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mjl80s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OAwIdaINd-container\",nodeId:\"OAwIdaINd\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index3)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[11],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[10],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[9],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Author\",fieldType:\"multipleOptions\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"OAwIdaINd\",layoutId:\"OAwIdaINd\",multipleOptionsNoneOption:\"None\",multiSelect:false,optionFieldNames:[\"Category\"],options:{allOption:true,allText:\"All\",defaultValue:\"\",optionMode:\"auto\",optionOrder:\"default\",optionValues:[\"Writing\",\"Videos\",\"Audio Drama\",\"Games\",\"Adult novels\",\"Children\u2019s book\",\"Comic books\",\"Graphic novel\",\"Omnibus\",\"Junior reader\",\"Short story\",\"Single issue comic\",\"YA novel\",\"Young adult novels\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqyzic\",layoutDependency:layoutDependency,layoutId:\"fNlRiJBw8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Sorting\"})}),className:\"framer-12j8etp\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"s3nrxt_kB\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dlQ4sxx6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Release Date\"})})},gtPygsIBY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Release Date\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pu2q2q\",layoutDependency:layoutDependency,layoutId:\"OfYHfcrjo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9ysq7n-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dePPun5uw-container\",nodeId:\"dePPun5uw\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(SortingSelector,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:\"12px 24px 12px 24px\",radius:\"8px\",selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"rgb(0, 0, 0)\",padding:\"12px 24px 12px 24px\",radius:\"8px\",shadows:\"\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",id:\"dePPun5uw\",layoutId:\"dePPun5uw\",options:[{booleanSort:\"yesNo\",dateSort:\"ascending\",defaultValue:true,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Ascending\",type:\"option\"},{booleanSort:\"yesNo\",dateSort:\"descending\",defaultValue:false,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Descending\",type:\"option\"}],selectorType:\"dropdown\",superfieldsId:0,transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})})]})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y5qpkv-container\",\"data-framer-name\":\"Grid VIew - Desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GLC2KJiyi-container\",name:\"Grid VIew - Desktop\",nodeId:\"GLC2KJiyi\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Superfields,{cmsCollectionName:\"\",collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index4)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[14],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[13],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[12],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],emptyState:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10i2zp1\",\"data-framer-name\":\"Empty State\",layoutDependency:layoutDependency,layoutId:\"z6WiAGXoR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bsvt8\",layoutDependency:layoutDependency,layoutId:\"eJcGyqx3F\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"crashed ship\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png\",srcSet:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png 3800w\"},className:\"framer-eaoktz\",\"data-framer-name\":\"Youtini_404_08_24 1\",layoutDependency:layoutDependency,layoutId:\"sE1NCwx5o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e1srgc\",\"data-styles-preset\":\"Aqbxg9j8g\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"No results found. Please adjust your filters.\"})})}),className:\"framer-1lq6cl6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mfqUxUhvN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mgw1wt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vp5TmHmbH-container\",nodeId:\"vp5TmHmbH\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ResetFiltersButton,{appearance:\"default\",autoHide:false,customLayer:[],fill:{color:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vp5TmHmbH\",layoutId:\"vp5TmHmbH\",padding:12,paddingBottom:12,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:12,radius:100,radiusBottomLeft:100,radiusBottomRight:100,radiusIsMixed:false,radiusTopLeft:100,radiusTopRight:100,resetFilters:true,resetSearch:true,shadows:\"\",superfieldsId:0,text:\"Reset Filters\",width:\"100%\"})})})]})],favouritesOnly:false,favouriting:false,filtering:true,height:\"100%\",id:\"GLC2KJiyi\",itemsPerPage:4,layoutId:\"GLC2KJiyi\",name:\"Grid VIew - Desktop\",pagination:false,paginationType:\"loadMoreButton\",randomize:false,scrollUp:{offset:0,scrollStyle:\"smooth\"},search:false,searchFields:[{fieldName:\"Title\",fieldType:\"default\",referenceFieldName:\"\"}],slugFieldName:\"Slug\",sorting:true,sortingField:{booleanSort:\"yesNo\",dateSort:\"descending\",enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\"},style:{width:\"100%\"},superfieldsId:0,width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ylz18k-container\",\"data-framer-name\":\"Grid VIew - Desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eoj5u00Nr-container\",name:\"Grid VIew - Desktop\",nodeId:\"eoj5u00Nr\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Superfields,{cmsCollectionName:\"\",collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1cv8ia6,{className:\"framer-1cv8ia6\",\"data-framer-name\":\"Books - Tablet\",layoutDependency:layoutDependency,layoutId:\"OZXhuT67z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:50,query:{from:{alias:\"OZXhuT67z\",data:Media,type:\"Collection\"},select:[{collection:\"OZXhuT67z\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"OZXhuT67z\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({aM3ixSDDZ:aM3ixSDDZOZXhuT67z,D_TdaeXA9:D_TdaeXA9OZXhuT67z,Euza5F551:Euza5F551OZXhuT67z,f9Ceg3jxy:f9Ceg3jxyOZXhuT67z,FYxzinrPY:FYxzinrPYOZXhuT67z,id:idOZXhuT67z,iFRopJbTc:iFRopJbTcOZXhuT67z,KeKnKyvk0:KeKnKyvk0OZXhuT67z,KQ8skpJyr:KQ8skpJyrOZXhuT67z,lre4IHG4h:lre4IHG4hOZXhuT67z,RBo7N94bA:RBo7N94bAOZXhuT67z,rqHDlLZoE:rqHDlLZoEOZXhuT67z,Sg9XJIdUo:Sg9XJIdUoOZXhuT67z,tKzx2N577:tKzx2N577OZXhuT67z},index5)=>{Sg9XJIdUoOZXhuT67z??=\"\";D_TdaeXA9OZXhuT67z??=\"\";f9Ceg3jxyOZXhuT67z??=true;KeKnKyvk0OZXhuT67z??=true;tKzx2N577OZXhuT67z??=\"\";Euza5F551OZXhuT67z??=\"\";rqHDlLZoEOZXhuT67z??=\"\";iFRopJbTcOZXhuT67z??=\"\";FYxzinrPYOZXhuT67z??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OZXhuT67z-${idOZXhuT67z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577OZXhuT67z},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-gca2uo\",layoutDependency:layoutDependency,layoutId:\"WFZZDQ3WR\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577OZXhuT67z},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcOZXhuT67z,implicitPathVariables:{tKzx2N577:tKzx2N577OZXhuT67z}},{href:FYxzinrPYOZXhuT67z,implicitPathVariables:{tKzx2N577:tKzx2N577OZXhuT67z}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"775px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ebotoy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WmsNCTns6-container\",nodeId:\"WmsNCTns6\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyOZXhuT67z,gcjJ94I0N:Euza5F551OZXhuT67z,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrOZXhuT67z),height:\"100%\",Hs41IlMzK:resolvedLinks1[2],I24cVQHQk:true,id:\"WmsNCTns6\",IR3jiq41o:D_TdaeXA9OZXhuT67z,layoutId:\"WmsNCTns6\",Lfpncnrfe:Sg9XJIdUoOZXhuT67z,lpUOIfyRG:resolvedLinks1[1],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAOZXhuT67z,activeLocale),QKahV6Nq4:resolvedLinks1[0],rbUJZJHYQ:KeKnKyvk0OZXhuT67z,sSzTH59qf:convertFromEnum(aM3ixSDDZOZXhuT67z,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEOZXhuT67z,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hOZXhuT67z})})})})})})},idOZXhuT67z);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sea5w0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tY1cf3MjQ-container\",nodeId:\"tY1cf3MjQ\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"tY1cf3MjQ\",layoutId:\"tY1cf3MjQ\",variant:loaderVariants(paginationInfo1,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore1}),WMdTKT0x7:\"Load More\"})})})]})})})})],emptyState:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10i2zp1\",\"data-framer-name\":\"Empty State\",layoutDependency:layoutDependency,layoutId:\"z6WiAGXoR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bsvt8\",layoutDependency:layoutDependency,layoutId:\"eJcGyqx3F\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"crashed ship\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png\",srcSet:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png 3800w\"},className:\"framer-eaoktz\",\"data-framer-name\":\"Youtini_404_08_24 1\",layoutDependency:layoutDependency,layoutId:\"sE1NCwx5o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e1srgc\",\"data-styles-preset\":\"Aqbxg9j8g\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"No results found. Please adjust your filters.\"})})}),className:\"framer-1lq6cl6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mfqUxUhvN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mgw1wt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vp5TmHmbH-container\",nodeId:\"vp5TmHmbH\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ResetFiltersButton,{appearance:\"default\",autoHide:false,customLayer:[],fill:{color:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vp5TmHmbH\",layoutId:\"vp5TmHmbH\",padding:12,paddingBottom:12,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:12,radius:100,radiusBottomLeft:100,radiusBottomRight:100,radiusIsMixed:false,radiusTopLeft:100,radiusTopRight:100,resetFilters:true,resetSearch:true,shadows:\"\",superfieldsId:0,text:\"Reset Filters\",width:\"100%\"})})})]})],favouritesOnly:false,favouriting:false,filtering:true,height:\"100%\",id:\"eoj5u00Nr\",itemsPerPage:4,layoutId:\"eoj5u00Nr\",name:\"Grid VIew - Desktop\",pagination:false,paginationType:\"loadMoreButton\",randomize:false,scrollUp:{offset:0,scrollStyle:\"smooth\"},search:false,searchFields:[{fieldName:\"Title\",fieldType:\"default\",referenceFieldName:\"\"}],slugFieldName:\"Slug\",sorting:true,sortingField:{booleanSort:\"yesNo\",dateSort:\"descending\",enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\"},style:{width:\"100%\"},superfieldsId:0,width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xc8qv\",\"data-border\":true,\"data-framer-name\":\"List VIew - Desktop\",layoutDependency:layoutDependency,layoutId:\"nuCfMunyp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(24, 24, 24, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{dlQ4sxx6q:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},gtPygsIBY:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},l9x_kfWLn:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3jz7o5\",layoutDependency:layoutDependency,layoutId:\"sn78bo72w\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-htp0rs\",layoutDependency:layoutDependency,layoutId:\"IjAY3UFWN\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"Space background image\",fit:\"fill\",pixelHeight:1693,pixelWidth:1860,sizes:\"1248px\",src:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png\",srcSet:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png 1860w\"},className:\"framer-h5rnfi\",\"data-framer-name\":\"Frame 23768\",layoutDependency:layoutDependency,layoutId:\"ez1GMO7V1\",style:{borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({l9x_kfWLn:{background:{alt:\"Space background image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||5998)-80-1526.8)/2+1112.8+20)+0+0+0+30),pixelHeight:1693,pixelWidth:1860,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png\",srcSet:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png 1860w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rmfksj\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"WsfaAnnDs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-y08xd8\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iKRtIJ3z1\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5w237u\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"x0jUxih7s\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gzsp0k\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"M9iZf1dMv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Author\"})}),className:\"framer-d218xy\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pAQxpehIH\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ywwdd\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"nceiAu88y\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9c2wys\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"KPjXaaLrb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Format\"})}),className:\"framer-11outd2\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UmZDa0V5h\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1594pkt\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"pubAbTA1l\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jy68wm\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"sMPKMAE1C\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Release Date\"})}),className:\"framer-1wzj8nn\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iE5ko_YJO\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({l9x_kfWLn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Release Date\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bi5qbk\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"aVF4Wx_F2\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uuc94h\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"WmvflVjnF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Purchase\"})}),className:\"framer-uv8yu8\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u_LbQvXOr\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2opuz8-container\",\"data-framer-name\":\"Superfields - Desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mlnnwC8_1-container\",name:\"Superfields - Desktop\",nodeId:\"mlnnwC8_1\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Superfields,{cmsCollectionName:\"\",collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j8lsi7\",\"data-framer-name\":\"Book List View - Mobile\",layoutDependency:layoutDependency,layoutId:\"VZI88C7cp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData2,{pageSize:50,query:{from:{alias:\"VZI88C7cp\",data:Media,type:\"Collection\"},select:[{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"VZI88C7cp\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"VZI88C7cp\",name:\"Sg9XJIdUo\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection2?.map(({FYxzinrPY:FYxzinrPYVZI88C7cp,id:idVZI88C7cp,iFRopJbTc:iFRopJbTcVZI88C7cp,KQ8skpJyr:KQ8skpJyrVZI88C7cp,lre4IHG4h:lre4IHG4hVZI88C7cp,Sg9XJIdUo:Sg9XJIdUoVZI88C7cp,tKzx2N577:tKzx2N577VZI88C7cp},index6)=>{Sg9XJIdUoVZI88C7cp??=\"\";tKzx2N577VZI88C7cp??=\"\";iFRopJbTcVZI88C7cp??=\"\";FYxzinrPYVZI88C7cp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VZI88C7cp-${idVZI88C7cp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577VZI88C7cp},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10uxxcy\",layoutDependency:layoutDependency,layoutId:\"aPWaLdZdI\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577VZI88C7cp},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcVZI88C7cp,implicitPathVariables:{tKzx2N577:tKzx2N577VZI88C7cp}},{href:FYxzinrPYVZI88C7cp,implicitPathVariables:{tKzx2N577:tKzx2N577VZI88C7cp}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"390px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o6gtpb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AXW3NEibl-container\",nodeId:\"AXW3NEibl\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:true,gcjJ94I0N:\"32 ABY\",GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrVZI88C7cp),height:\"100%\",Hs41IlMzK:resolvedLinks2[2],I24cVQHQk:true,id:\"AXW3NEibl\",IR3jiq41o:\"John Ostrander\",layoutId:\"AXW3NEibl\",Lfpncnrfe:Sg9XJIdUoVZI88C7cp,lpUOIfyRG:resolvedLinks2[1],q0lbw9E72:\"Format\",QKahV6Nq4:resolvedLinks2[0],rbUJZJHYQ:true,sSzTH59qf:\"Uu6bLLdSm\",sTK36tM9N:true,style:{width:\"100%\"},suVhKOxJU:\"Timeline Subtitle\",t8FbEhpa_:\"OspkRExtP\",variant:\"YAZRVXsYS\",width:\"100%\",wvLQhHykL:lre4IHG4hVZI88C7cp})})})})})})},idVZI88C7cp);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1guza6o-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"YLAMyEgVE-container\",nodeId:\"YLAMyEgVE\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"YLAMyEgVE\",layoutId:\"YLAMyEgVE\",variant:loaderVariants(paginationInfo2,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore2}),WMdTKT0x7:\"Load More\"})})})]})})})})],emptyState:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10i2zp1\",\"data-framer-name\":\"Empty State\",layoutDependency:layoutDependency,layoutId:\"z6WiAGXoR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bsvt8\",layoutDependency:layoutDependency,layoutId:\"eJcGyqx3F\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"crashed ship\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png\",srcSet:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png 3800w\"},className:\"framer-eaoktz\",\"data-framer-name\":\"Youtini_404_08_24 1\",layoutDependency:layoutDependency,layoutId:\"sE1NCwx5o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e1srgc\",\"data-styles-preset\":\"Aqbxg9j8g\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"No results found. Please adjust your filters.\"})})}),className:\"framer-1lq6cl6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mfqUxUhvN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mgw1wt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vp5TmHmbH-container\",nodeId:\"vp5TmHmbH\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ResetFiltersButton,{appearance:\"default\",autoHide:false,customLayer:[],fill:{color:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vp5TmHmbH\",layoutId:\"vp5TmHmbH\",padding:12,paddingBottom:12,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:12,radius:100,radiusBottomLeft:100,radiusBottomRight:100,radiusIsMixed:false,radiusTopLeft:100,radiusTopRight:100,resetFilters:true,resetSearch:true,shadows:\"\",superfieldsId:0,text:\"Reset Filters\",width:\"100%\"})})})]})],favouritesOnly:false,favouriting:false,filtering:true,height:\"100%\",id:\"mlnnwC8_1\",itemsPerPage:4,layoutId:\"mlnnwC8_1\",name:\"Superfields - Desktop\",pagination:false,paginationType:\"loadMoreButton\",randomize:false,scrollUp:{offset:0,scrollStyle:\"smooth\"},search:false,searchFields:[{fieldName:\"Title\",fieldType:\"default\",referenceFieldName:\"\"}],slugFieldName:\"Slug\",sorting:false,style:{width:\"100%\"},superfieldsId:0,width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1awi0x9\",layoutDependency:layoutDependency,layoutId:\"UcWRB1xQW\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"Space background image\",fit:\"fill\",pixelHeight:1693,pixelWidth:1860,src:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png\",srcSet:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png 1860w\"},className:\"framer-1ct7s9b\",\"data-framer-name\":\"Frame 23768\",layoutDependency:layoutDependency,layoutId:\"w4Yf4wVJW\",style:{borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({dlQ4sxx6q:{background:{alt:\"Space background image\",fit:\"fill\",pixelHeight:1693,pixelWidth:1860,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png\",srcSet:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png 1860w\"}},gtPygsIBY:{background:{alt:\"Space background image\",fit:\"fill\",pixelHeight:1693,pixelWidth:1860,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png\",srcSet:\"https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tMmTEuVGd28Lt0a0rYpbQ6Gm4A.png 1860w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4o20ye\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"P2OZRaKEN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-wfumc8\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nuUxsga4k\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17uyc1u\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"pl8FMe31a\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f8kp2i\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"XdRbLFBU3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Author\"})}),className:\"framer-11c977e\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jyY_RV5dx\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2tbj7l\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"zFLi6NlMs\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p198z3\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"xjwXIdXTl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Format\"})}),className:\"framer-1dqniwb\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DXSrZn73i\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e1pinp\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"aUsgUeyUJ\",style:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vivp8s\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"GJjUMFLpm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Release date\"})}),className:\"framer-13ddrg6\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M6AIxncZu\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dlQ4sxx6q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Release Date\"})})},gtPygsIBY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Release Date\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i7jack\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"jN7CGWysC\",style:{backgroundColor:\"rgba(255, 255, 255, 0.08)\"},variants:{dlQ4sxx6q:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"},gtPygsIBY:{backgroundColor:\"var(--token-8ba56df2-a7ed-442b-8814-8a5c9139f733, rgb(104, 101, 107))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aujzl6\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"lgkcd7mWv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e8eldl\",\"data-styles-preset\":\"zDmPpK8Kg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)))\"},children:\"Purchase\"})}),className:\"framer-vmo2l8\",\"data-framer-name\":\"Legends: Tales of the Jedi Omnibus Hardcover\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vfxKXA_7s\",style:{\"--extracted-r6o4lv\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tugs3j-container\",\"data-framer-name\":\"Superfields - Desktop\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CceJvw7Oc-container\",name:\"Superfields - Desktop\",nodeId:\"CceJvw7Oc\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Superfields,{cmsCollectionName:\"\",collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6d4kb\",\"data-framer-name\":\"Book List View - Desktop\",layoutDependency:layoutDependency,layoutId:\"KNImi7VbE\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData3,{pageSize:50,query:{from:{alias:\"KNImi7VbE\",data:Media,type:\"Collection\"},select:[{collection:\"KNImi7VbE\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"KNImi7VbE\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection3?.map(({D_TdaeXA9:D_TdaeXA9KNImi7VbE,FYxzinrPY:FYxzinrPYKNImi7VbE,id:idKNImi7VbE,iFRopJbTc:iFRopJbTcKNImi7VbE,lre4IHG4h:lre4IHG4hKNImi7VbE,RBo7N94bA:RBo7N94bAKNImi7VbE,Sg9XJIdUo:Sg9XJIdUoKNImi7VbE,tKzx2N577:tKzx2N577KNImi7VbE},index7)=>{Sg9XJIdUoKNImi7VbE??=\"\";D_TdaeXA9KNImi7VbE??=\"\";tKzx2N577KNImi7VbE??=\"\";iFRopJbTcKNImi7VbE??=\"\";FYxzinrPYKNImi7VbE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KNImi7VbE-${idKNImi7VbE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577KNImi7VbE},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hj8eb8\",layoutDependency:layoutDependency,layoutId:\"pwbgB5xg7\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577KNImi7VbE},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcKNImi7VbE,implicitPathVariables:{tKzx2N577:tKzx2N577KNImi7VbE}},{href:FYxzinrPYKNImi7VbE,implicitPathVariables:{tKzx2N577:tKzx2N577KNImi7VbE}}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"1248px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b5mcod-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"F8yBfwASI-container\",nodeId:\"F8yBfwASI\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:true,gcjJ94I0N:\"25,793 BBY\",GVJVLoJXw:true,height:\"100%\",Hs41IlMzK:resolvedLinks3[2],I24cVQHQk:true,id:\"F8yBfwASI\",IR3jiq41o:D_TdaeXA9KNImi7VbE,layoutId:\"F8yBfwASI\",Lfpncnrfe:Sg9XJIdUoKNImi7VbE,lpUOIfyRG:resolvedLinks3[1],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAKNImi7VbE,activeLocale),QKahV6Nq4:resolvedLinks3[0],rbUJZJHYQ:true,sSzTH59qf:\"Uu6bLLdSm\",sTK36tM9N:true,style:{width:\"100%\"},suVhKOxJU:\"Timeline Subtitle\",t8FbEhpa_:\"OspkRExtP\",variant:\"IynYujBo9\",width:\"100%\",wvLQhHykL:lre4IHG4hKNImi7VbE})})})})})})},idKNImi7VbE);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ox59o3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"TdnAIbCwp-container\",nodeId:\"TdnAIbCwp\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"TdnAIbCwp\",layoutId:\"TdnAIbCwp\",variant:loaderVariants(paginationInfo3,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore3}),WMdTKT0x7:\"Load More\"})})})]})})})})],emptyState:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10i2zp1\",\"data-framer-name\":\"Empty State\",layoutDependency:layoutDependency,layoutId:\"z6WiAGXoR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bsvt8\",layoutDependency:layoutDependency,layoutId:\"eJcGyqx3F\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"crashed ship\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png\",srcSet:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png 3800w\"},className:\"framer-eaoktz\",\"data-framer-name\":\"Youtini_404_08_24 1\",layoutDependency:layoutDependency,layoutId:\"sE1NCwx5o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e1srgc\",\"data-styles-preset\":\"Aqbxg9j8g\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"No results found. Please adjust your filters.\"})})}),className:\"framer-1lq6cl6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mfqUxUhvN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mgw1wt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vp5TmHmbH-container\",nodeId:\"vp5TmHmbH\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ResetFiltersButton,{appearance:\"default\",autoHide:false,customLayer:[],fill:{color:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vp5TmHmbH\",layoutId:\"vp5TmHmbH\",padding:12,paddingBottom:12,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:12,radius:100,radiusBottomLeft:100,radiusBottomRight:100,radiusIsMixed:false,radiusTopLeft:100,radiusTopRight:100,resetFilters:true,resetSearch:true,shadows:\"\",superfieldsId:0,text:\"Reset Filters\",width:\"100%\"})})})]})],favouritesOnly:false,favouriting:false,filtering:true,height:\"100%\",id:\"CceJvw7Oc\",itemsPerPage:4,layoutId:\"CceJvw7Oc\",name:\"Superfields - Desktop\",pagination:false,paginationType:\"loadMoreButton\",randomize:false,scrollUp:{offset:0,scrollStyle:\"smooth\"},search:false,searchFields:[{fieldName:\"Title\",fieldType:\"default\",referenceFieldName:\"\"}],slugFieldName:\"Slug\",sorting:false,style:{width:\"100%\"},superfieldsId:0,width:\"100%\",...addPropertyOverrides({gtPygsIBY:{itemsPerPage:50,pagination:true}},baseVariant,gestureVariant)})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vko1yn\",layoutDependency:layoutDependency,layoutId:\"U3lqjsd0t\",style:{backgroundColor:\"rgb(255, 255, 255)\"}})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vkvkrj-container\",\"data-framer-name\":\"Grid VIew - Mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mrhyrZ3Ig-container\",name:\"Grid VIew - Mobile\",nodeId:\"mrhyrZ3Ig\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Superfields,{cmsCollectionName:\"\",collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jp2p8n\",\"data-framer-name\":\"Books - Mobile\",layoutDependency:layoutDependency,layoutId:\"wAyfP4ZtD\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData4,{pageSize:50,query:{from:{alias:\"wAyfP4ZtD\",data:Media,type:\"Collection\"},select:[{collection:\"wAyfP4ZtD\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"wAyfP4ZtD\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection4?.map(({aM3ixSDDZ:aM3ixSDDZwAyfP4ZtD,D_TdaeXA9:D_TdaeXA9wAyfP4ZtD,FYxzinrPY:FYxzinrPYwAyfP4ZtD,id:idwAyfP4ZtD,iFRopJbTc:iFRopJbTcwAyfP4ZtD,KQ8skpJyr:KQ8skpJyrwAyfP4ZtD,lre4IHG4h:lre4IHG4hwAyfP4ZtD,RBo7N94bA:RBo7N94bAwAyfP4ZtD,Sg9XJIdUo:Sg9XJIdUowAyfP4ZtD,tKzx2N577:tKzx2N577wAyfP4ZtD},index8)=>{Sg9XJIdUowAyfP4ZtD??=\"\";D_TdaeXA9wAyfP4ZtD??=\"\";tKzx2N577wAyfP4ZtD??=\"\";iFRopJbTcwAyfP4ZtD??=\"\";FYxzinrPYwAyfP4ZtD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wAyfP4ZtD-${idwAyfP4ZtD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577wAyfP4ZtD},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14klsmz\",layoutDependency:layoutDependency,layoutId:\"hgeg_KH0G\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577wAyfP4ZtD},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcwAyfP4ZtD,implicitPathVariables:{tKzx2N577:tKzx2N577wAyfP4ZtD}},{href:FYxzinrPYwAyfP4ZtD,implicitPathVariables:{tKzx2N577:tKzx2N577wAyfP4ZtD}}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"275px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dgobyy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FVaSKX7Fz-container\",nodeId:\"FVaSKX7Fz\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:false,gcjJ94I0N:\"32 ABY\",GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrwAyfP4ZtD),height:\"100%\",Hs41IlMzK:resolvedLinks4[2],I24cVQHQk:true,id:\"FVaSKX7Fz\",IR3jiq41o:D_TdaeXA9wAyfP4ZtD,layoutId:\"FVaSKX7Fz\",Lfpncnrfe:Sg9XJIdUowAyfP4ZtD,lpUOIfyRG:resolvedLinks4[1],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAwAyfP4ZtD,activeLocale),QKahV6Nq4:resolvedLinks4[0],rbUJZJHYQ:false,sSzTH59qf:convertFromEnum(aM3ixSDDZwAyfP4ZtD,activeLocale),sTK36tM9N:true,style:{width:\"100%\"},suVhKOxJU:\"Timeline Subtitle\",t8FbEhpa_:\"OspkRExtP\",variant:\"lg7nBu5bP\",width:\"100%\",wvLQhHykL:lre4IHG4hwAyfP4ZtD})})})})})})},idwAyfP4ZtD);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pvkbb3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bad2rkiE0-container\",nodeId:\"bad2rkiE0\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"bad2rkiE0\",layoutId:\"bad2rkiE0\",variant:loaderVariants(paginationInfo4,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore:loadMore4}),WMdTKT0x7:\"Load More\"})})})]})})})})],emptyState:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10i2zp1\",\"data-framer-name\":\"Empty State\",layoutDependency:layoutDependency,layoutId:\"z6WiAGXoR\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bsvt8\",layoutDependency:layoutDependency,layoutId:\"eJcGyqx3F\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"crashed ship\",fit:\"fill\",sizes:\"320px\",src:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png\",srcSet:\"https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=512 512w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qoti6DkQpfxsfZa3l5LzcCTO3I.png 3800w\"},className:\"framer-eaoktz\",\"data-framer-name\":\"Youtini_404_08_24 1\",layoutDependency:layoutDependency,layoutId:\"sE1NCwx5o\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e1srgc\",\"data-styles-preset\":\"Aqbxg9j8g\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"No results found. Please adjust your filters.\"})})}),className:\"framer-1lq6cl6\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mfqUxUhvN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mgw1wt-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vp5TmHmbH-container\",nodeId:\"vp5TmHmbH\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ResetFiltersButton,{appearance:\"default\",autoHide:false,customLayer:[],fill:{color:\"var(--token-470cc31c-703d-4f2c-8b7c-e0be75d799f8, rgb(130, 48, 114))\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"150%\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"vp5TmHmbH\",layoutId:\"vp5TmHmbH\",padding:12,paddingBottom:12,paddingIsMixed:true,paddingLeft:20,paddingRight:20,paddingTop:12,radius:100,radiusBottomLeft:100,radiusBottomRight:100,radiusIsMixed:false,radiusTopLeft:100,radiusTopRight:100,resetFilters:true,resetSearch:true,shadows:\"\",superfieldsId:0,text:\"Reset Filters\",width:\"100%\"})})})]})],favouritesOnly:false,favouriting:false,filtering:true,height:\"100%\",id:\"mrhyrZ3Ig\",itemsPerPage:4,layoutId:\"mrhyrZ3Ig\",name:\"Grid VIew - Mobile\",pagination:false,paginationType:\"loadMoreButton\",randomize:false,scrollUp:{offset:0,scrollStyle:\"smooth\"},search:false,searchFields:[{fieldName:\"Title\",fieldType:\"default\",referenceFieldName:\"\"}],slugFieldName:\"Slug\",sorting:false,style:{width:\"100%\"},superfieldsId:0,width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvvb46\",layoutDependency:layoutDependency,layoutId:\"QmOw7xy2P\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xql8ks\",layoutDependency:layoutDependency,layoutId:\"agU1wZ8Ap\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u7uex6\",layoutDependency:layoutDependency,layoutId:\"pCVzxEEO3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Schedule\"})}),className:\"framer-qif783\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"dNk9jk7V0\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15ecyh2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"g6bQWWUHb-container\",nodeId:\"g6bQWWUHb\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index9)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[17],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[16],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[15],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Release Schedule\",fieldType:\"text\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"g6bQWWUHb\",layoutId:\"g6bQWWUHb\",multipleOptionsNoneOption:\"\",multiSelect:false,optionFieldNames:[],options:{allOption:true,allText:\"All\",defaultValue:\"Upcoming Releases\",optionMode:\"auto\",optionOrder:\"default\",optionValues:[\"Upcoming releases\",\"Recently released\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",style:{width:\"100%\"},superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lirrtz\",layoutDependency:layoutDependency,layoutId:\"U9TxMTtsG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Format\"})}),className:\"framer-1giyzke\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"us3OVqURc\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gdye2f\",layoutDependency:layoutDependency,layoutId:\"Wgilqa7qj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cbgbdy-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EFbUYF0XJ-container\",nodeId:\"EFbUYF0XJ\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(Filter,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},checkboxStyle:{fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{colorOn:\"rgb(255, 255, 255)\",lineWidth:2,rounded:true,size:16},radius:6,size:24},collectionList:[/*#__PURE__*/_jsx(MotionDivSortCMS1h87yhm,{className:\"framer-1h87yhm\",\"data-framer-name\":\"Books - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wm5_ujfl4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:50,query:{from:{alias:\"Wm5_ujfl4\",data:Media,type:\"Collection\"},select:[{collection:\"Wm5_ujfl4\",name:\"Sg9XJIdUo\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"lre4IHG4h\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"D_TdaeXA9\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"RBo7N94bA\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"f9Ceg3jxy\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KeKnKyvk0\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"aM3ixSDDZ\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"Euza5F551\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"rqHDlLZoE\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"iFRopJbTc\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"FYxzinrPY\",type:\"Identifier\"},{collection:\"Wm5_ujfl4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({aM3ixSDDZ:aM3ixSDDZWm5_ujfl4,D_TdaeXA9:D_TdaeXA9Wm5_ujfl4,Euza5F551:Euza5F551Wm5_ujfl4,f9Ceg3jxy:f9Ceg3jxyWm5_ujfl4,FYxzinrPY:FYxzinrPYWm5_ujfl4,id:idWm5_ujfl4,iFRopJbTc:iFRopJbTcWm5_ujfl4,KeKnKyvk0:KeKnKyvk0Wm5_ujfl4,KQ8skpJyr:KQ8skpJyrWm5_ujfl4,lre4IHG4h:lre4IHG4hWm5_ujfl4,RBo7N94bA:RBo7N94bAWm5_ujfl4,rqHDlLZoE:rqHDlLZoEWm5_ujfl4,Sg9XJIdUo:Sg9XJIdUoWm5_ujfl4,tKzx2N577:tKzx2N577Wm5_ujfl4},index10)=>{Sg9XJIdUoWm5_ujfl4??=\"\";D_TdaeXA9Wm5_ujfl4??=\"\";f9Ceg3jxyWm5_ujfl4??=true;KeKnKyvk0Wm5_ujfl4??=true;tKzx2N577Wm5_ujfl4??=\"\";Euza5F551Wm5_ujfl4??=\"\";rqHDlLZoEWm5_ujfl4??=\"\";iFRopJbTcWm5_ujfl4??=\"\";FYxzinrPYWm5_ujfl4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wm5_ujfl4-${idWm5_ujfl4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577Wm5_ujfl4},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-1vkx5oc\",layoutDependency:layoutDependency,layoutId:\"o5psvPT6k\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:{pathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4},webPageId:\"uIbhTNt5m\"},implicitPathVariables:undefined},{href:iFRopJbTcWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}},{href:FYxzinrPYWm5_ujfl4,implicitPathVariables:{tKzx2N577:tKzx2N577Wm5_ujfl4}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:\"599px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrw0wx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZLNbS2NL-container\",nodeId:\"ZZLNbS2NL\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(TimelineTimelineCards,{bVdWbFHrk:true,fREl26Ih5:f9Ceg3jxyWm5_ujfl4,gcjJ94I0N:Euza5F551Wm5_ujfl4,GVJVLoJXw:true,HaTarzpn9:toResponsiveImage(KQ8skpJyrWm5_ujfl4),height:\"100%\",Hs41IlMzK:resolvedLinks[20],I24cVQHQk:true,id:\"ZZLNbS2NL\",IR3jiq41o:D_TdaeXA9Wm5_ujfl4,layoutId:\"ZZLNbS2NL\",Lfpncnrfe:Sg9XJIdUoWm5_ujfl4,lpUOIfyRG:resolvedLinks[19],q0lbw9E72:enumToDisplayNameFunctions[\"RBo7N94bA\"]?.(RBo7N94bAWm5_ujfl4,activeLocale),QKahV6Nq4:resolvedLinks[18],rbUJZJHYQ:KeKnKyvk0Wm5_ujfl4,sSzTH59qf:convertFromEnum(aM3ixSDDZWm5_ujfl4,activeLocale),sTK36tM9N:true,style:{height:\"100%\",width:\"100%\"},suVhKOxJU:rqHDlLZoEWm5_ujfl4,t8FbEhpa_:\"OspkRExtP\",variant:\"cvV1g43aA\",width:\"100%\",wvLQhHykL:lre4IHG4hWm5_ujfl4})})})})})})},idWm5_ujfl4);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dijtvo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hzP2_wMU3-container\",nodeId:\"hzP2_wMU3\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentLoadMore,{height:\"100%\",id:\"hzP2_wMU3\",layoutId:\"hzP2_wMU3\",variant:loaderVariants(paginationInfo,{disabled:\"BDfiP9Ela\",loading:\"wZebOMm2J\"},\"KkVm0nyyQ\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore}),WMdTKT0x7:\"Load More\"})})})]})})})})],dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{color:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:16,paddingBottom:12,paddingIsMixed:true,paddingLeft:24,paddingRight:24,paddingTop:12,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shadows:\"\"},fieldName:\"Author\",fieldType:\"multipleOptions\",filterBy:\"field\",filterTypeOption:\"dropdown\",filterTypeToggle:\"toggleSwitch\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"EFbUYF0XJ\",layoutId:\"EFbUYF0XJ\",multipleOptionsNoneOption:\"None\",multiSelect:false,optionFieldNames:[\"Category\"],options:{allOption:true,allText:\"All\",defaultValue:\"\",optionMode:\"auto\",optionOrder:\"default\",optionValues:[\"Writing\",\"Videos\",\"Audio Drama\",\"Games\",\"Adult novels\",\"Children\u2019s book\",\"Comic books\",\"Graphic novel\",\"Omnibus\",\"Junior reader\",\"Short story\",\"Single issue comic\",\"YA novel\",\"Young adult novels\"],placeholder:\"[Preview project]\"},referenceFieldName:\"Title\",referenceFieldType:\"text\",style:{width:\"100%\"},superfieldsId:0,textCondition:\"equals\",toggleMultiOptions:{allOption:true,allText:\"All\",defaultValue:\"all\",noOption:false,noText:\"Off\",order:\"yesNo\",yesOption:true,yesText:\"On\"},toggleSwitchStyle:{fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},height:32,padding:4,radius:16,shadows:\"0px 2px 4px 0px rgba(0,0,0,0.2)\",switchFill:{colorAOff:\"rgb(255, 255, 255)\",colorAOn:\"rgb(255, 255, 255)\",colorBOff:\"rgb(214, 214, 214)\",colorBOn:\"rgb(214, 214, 214)\",colorOff:\"rgb(255, 255, 255)\",colorOn:\"rgb(255, 255, 255)\",gradientAngle:0,type:\"color\"}},toggleTwoStateOptions:{defaultValue:\"off\",offState:\"all\",onState:\"on\"},toggleTwoStateText:{fontColor:\"rgb(0, 0, 0)\",gap:10,location:\"right\",offText:\"Off\",onText:\"On\"},transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1naw98m\",layoutDependency:layoutDependency,layoutId:\"jt2MDnT_D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"155%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Release Date\"})}),className:\"framer-1vcwbzo\",\"data-framer-name\":\"Releases\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"v5uXLwUUl\",style:{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwutrq\",layoutDependency:layoutDependency,layoutId:\"I090Vw6QD\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19oa7c9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Wx29XvnC1-container\",nodeId:\"Wx29XvnC1\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(SortingSelector,{buttonGroupLayout:{direction:\"horizontal\",distribute:\"center\",gapH:8,gapV:8,width:\"fit\",wrap:false},buttonGroupStyle:{defaultFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},padding:\"12px 24px 12px 24px\",radius:\"8px\",selectedFontColor:\"rgb(255, 255, 255)\",shadows:\"\",shadowsSelected:\"\"},dividerStyle:{color:\"rgba(0, 0, 0, 0.25)\",marginH:0,marginV:0,rounded:false,width:1},dropdownStyle:{arrow:{gap:10,size:12,stroke:2},border:{color:\"rgba(24, 24, 24, 0.08)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fill:{color:\"rgb(240, 240, 240)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(189, 189, 189)\",gradientAngle:0,type:\"color\"},fontColor:\"var(--token-e87ac372-d786-45ea-8b2f-fa7d8f8ec814, rgb(18, 18, 18))\",padding:\"12px 24px 12px 24px\",radius:\"8px\",shadows:\"\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"150%\"},height:\"100%\",id:\"Wx29XvnC1\",layoutId:\"Wx29XvnC1\",options:[{booleanSort:\"yesNo\",dateSort:\"ascending\",defaultValue:true,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Ascending\",type:\"option\"},{booleanSort:\"yesNo\",dateSort:\"descending\",defaultValue:false,enumSort:\"ascending\",favouritesSort:\"favouritesFirst\",fieldName:\"Release Date\",fieldType:\"date\",numberSort:\"ascending\",referenceFieldName:\"Title\",referenceFieldType:\"string\",sortBy:\"field\",stringSort:\"ascending\",title:\"Descending\",type:\"option\"}],selectorType:\"dropdown\",style:{width:\"100%\"},superfieldsId:0,transition:{bounce:0,delay:0,duration:.2,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({l9x_kfWLn:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||5998)-80-1526.8)/2+100+10)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bq5gqu-container\",layoutDependency:layoutDependency,layoutId:\"MynbsOGwF-container\",nodeId:\"MynbsOGwF\",rendersWithMotion:true,scopeId:\"bzC6LXBfk\",children:/*#__PURE__*/_jsx(ReleaseScheduleViewSelection,{height:\"100%\",id:\"MynbsOGwF\",k691cruDG:k691cruDGrk2nvg,layoutId:\"MynbsOGwF\",variant:\"wi_Gx54Ao\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vnfv9.framer-xdthvt, .framer-Vnfv9 .framer-xdthvt { display: block; }\",\".framer-Vnfv9.framer-19iq8en { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1248px; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 1248px; }\",\".framer-Vnfv9 .framer-adkb5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-162fp7l-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1mkvogh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1c9k3s0, .framer-Vnfv9 .framer-1vyfz7q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-b3ngfu, .framer-Vnfv9 .framer-1p1dipe, .framer-Vnfv9 .framer-v125tn, .framer-Vnfv9 .framer-1irioqf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Vnfv9 .framer-1t52w7g, .framer-Vnfv9 .framer-1v1dt2y, .framer-Vnfv9 .framer-1pk0p3p, .framer-Vnfv9 .framer-12j8etp { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Vnfv9 .framer-yvoxsc-container, .framer-Vnfv9 .framer-1h82o2p-container, .framer-Vnfv9 .framer-1e2qzd3-container, .framer-Vnfv9 .framer-1ydx0ka-container, .framer-Vnfv9 .framer-dye1fy-container, .framer-Vnfv9 .framer-1spvxjb-container, .framer-Vnfv9 .framer-mjl80s-container, .framer-Vnfv9 .framer-9ysq7n-container, .framer-Vnfv9 .framer-mgw1wt-container, .framer-Vnfv9 .framer-1bq5gqu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Vnfv9 .framer-1h87yhm { display: grid; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 0px 80px 0px; position: relative; width: 1248px; }\",\".framer-Vnfv9 .framer-1vkx5oc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px 25px 25px 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1lrw0wx-container, .framer-Vnfv9 .framer-1ebotoy-container { flex: 1 0 0px; height: 275px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-dijtvo-container, .framer-Vnfv9 .framer-sea5w0-container, .framer-Vnfv9 .framer-1guza6o-container, .framer-Vnfv9 .framer-1ox59o3-container, .framer-Vnfv9 .framer-1pvkbb3-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 1; }\",\".framer-Vnfv9 .framer-z630kw, .framer-Vnfv9 .framer-1w4y5yr, .framer-Vnfv9 .framer-1giyzke { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Vnfv9 .framer-1meb68s, .framer-Vnfv9 .framer-z0wgf9 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-Vnfv9 .framer-ncj88i, .framer-Vnfv9 .framer-iqyzic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Vnfv9 .framer-1u1lird, .framer-Vnfv9 .framer-pu2q2q { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-Vnfv9 .framer-1y5qpkv-container, .framer-Vnfv9 .framer-1vkvkrj-container, .framer-Vnfv9 .framer-dgobyy-container, .framer-Vnfv9 .framer-15ecyh2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-10i2zp1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: min-content; }\",\".framer-Vnfv9 .framer-14bsvt8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 350px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Vnfv9 .framer-eaoktz { aspect-ratio: 2.2521430493850447 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); position: relative; width: 320px; }\",\".framer-Vnfv9 .framer-1lq6cl6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-Vnfv9 .framer-1ylz18k-container { flex: none; height: auto; position: relative; width: 800px; }\",\".framer-Vnfv9 .framer-1cv8ia6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: 800px; }\",\".framer-Vnfv9 .framer-gca2uo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 25px 25px 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-19xc8qv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vnfv9 .framer-3jz7o5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1248px; }\",\".framer-Vnfv9 .framer-htp0rs, .framer-Vnfv9 .framer-1vko1yn { flex: none; height: 30px; overflow: visible; position: sticky; top: 85px; width: 100%; z-index: 2; }\",\".framer-Vnfv9 .framer-h5rnfi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 110px; width: 100%; z-index: 2; }\",\".framer-Vnfv9 .framer-1rmfksj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 455px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-y08xd8, .framer-Vnfv9 .framer-d218xy, .framer-Vnfv9 .framer-11outd2, .framer-Vnfv9 .framer-1wzj8nn, .framer-Vnfv9 .framer-uv8yu8, .framer-Vnfv9 .framer-wfumc8, .framer-Vnfv9 .framer-11c977e, .framer-Vnfv9 .framer-1dqniwb, .framer-Vnfv9 .framer-13ddrg6, .framer-Vnfv9 .framer-vmo2l8 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Vnfv9 .framer-5w237u, .framer-Vnfv9 .framer-13ywwdd, .framer-Vnfv9 .framer-1594pkt, .framer-Vnfv9 .framer-1bi5qbk, .framer-Vnfv9 .framer-17uyc1u, .framer-Vnfv9 .framer-2tbj7l, .framer-Vnfv9 .framer-1e1pinp, .framer-Vnfv9 .framer-1i7jack { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-1gzsp0k, .framer-Vnfv9 .framer-f8kp2i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 355px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-9c2wys, .framer-Vnfv9 .framer-p198z3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 178px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-jy68wm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 140px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-1uuc94h, .framer-Vnfv9 .framer-aujzl6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100px; overflow: hidden; padding: 12px 5px 12px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-2opuz8-container, .framer-Vnfv9 .framer-1tugs3j-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-Vnfv9 .framer-1j8lsi7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: 390px; }\",\".framer-Vnfv9 .framer-10uxxcy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-o6gtpb-container, .framer-Vnfv9 .framer-1b5mcod-container, .framer-Vnfv9 .framer-1cbgbdy-container, .framer-Vnfv9 .framer-19oa7c9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-1awi0x9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1ct7s9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vnfv9 .framer-4o20ye { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 350px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-1vivp8s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 180px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; width: 1px; }\",\".framer-Vnfv9 .framer-m6d4kb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: 1248px; }\",\".framer-Vnfv9 .framer-1hj8eb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1jp2p8n { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 80px 0px; position: relative; width: min-content; }\",\".framer-Vnfv9 .framer-14klsmz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: auto; }\",\".framer-Vnfv9 .framer-mvvb46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-xql8ks { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1u7uex6, .framer-Vnfv9 .framer-1lirrtz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-qif783, .framer-Vnfv9 .framer-1vcwbzo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Vnfv9 .framer-gdye2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-1naw98m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Vnfv9 .framer-fwutrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vnfv9.framer-19iq8en, .framer-Vnfv9 .framer-adkb5k, .framer-Vnfv9 .framer-1mkvogh, .framer-Vnfv9 .framer-1c9k3s0, .framer-Vnfv9 .framer-b3ngfu, .framer-Vnfv9 .framer-1vkx5oc, .framer-Vnfv9 .framer-1p1dipe, .framer-Vnfv9 .framer-1meb68s, .framer-Vnfv9 .framer-ncj88i, .framer-Vnfv9 .framer-1u1lird, .framer-Vnfv9 .framer-1vyfz7q, .framer-Vnfv9 .framer-v125tn, .framer-Vnfv9 .framer-1irioqf, .framer-Vnfv9 .framer-z0wgf9, .framer-Vnfv9 .framer-iqyzic, .framer-Vnfv9 .framer-pu2q2q, .framer-Vnfv9 .framer-10i2zp1, .framer-Vnfv9 .framer-14bsvt8, .framer-Vnfv9 .framer-1cv8ia6, .framer-Vnfv9 .framer-gca2uo, .framer-Vnfv9 .framer-19xc8qv, .framer-Vnfv9 .framer-3jz7o5, .framer-Vnfv9 .framer-h5rnfi, .framer-Vnfv9 .framer-1rmfksj, .framer-Vnfv9 .framer-1gzsp0k, .framer-Vnfv9 .framer-9c2wys, .framer-Vnfv9 .framer-jy68wm, .framer-Vnfv9 .framer-1uuc94h, .framer-Vnfv9 .framer-1j8lsi7, .framer-Vnfv9 .framer-10uxxcy, .framer-Vnfv9 .framer-1awi0x9, .framer-Vnfv9 .framer-1ct7s9b, .framer-Vnfv9 .framer-4o20ye, .framer-Vnfv9 .framer-f8kp2i, .framer-Vnfv9 .framer-p198z3, .framer-Vnfv9 .framer-1vivp8s, .framer-Vnfv9 .framer-aujzl6, .framer-Vnfv9 .framer-m6d4kb, .framer-Vnfv9 .framer-1hj8eb8, .framer-Vnfv9 .framer-1jp2p8n, .framer-Vnfv9 .framer-14klsmz, .framer-Vnfv9 .framer-mvvb46, .framer-Vnfv9 .framer-xql8ks, .framer-Vnfv9 .framer-1u7uex6, .framer-Vnfv9 .framer-1lirrtz, .framer-Vnfv9 .framer-gdye2f, .framer-Vnfv9 .framer-1naw98m, .framer-Vnfv9 .framer-fwutrq { gap: 0px; } .framer-Vnfv9.framer-19iq8en > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Vnfv9.framer-19iq8en > :first-child, .framer-Vnfv9 .framer-adkb5k > :first-child, .framer-Vnfv9 .framer-b3ngfu > :first-child, .framer-Vnfv9 .framer-1p1dipe > :first-child, .framer-Vnfv9 .framer-ncj88i > :first-child, .framer-Vnfv9 .framer-v125tn > :first-child, .framer-Vnfv9 .framer-1irioqf > :first-child, .framer-Vnfv9 .framer-iqyzic > :first-child, .framer-Vnfv9 .framer-10i2zp1 > :first-child, .framer-Vnfv9 .framer-14bsvt8 > :first-child, .framer-Vnfv9 .framer-1cv8ia6 > :first-child, .framer-Vnfv9 .framer-19xc8qv > :first-child, .framer-Vnfv9 .framer-3jz7o5 > :first-child, .framer-Vnfv9 .framer-1j8lsi7 > :first-child, .framer-Vnfv9 .framer-1awi0x9 > :first-child, .framer-Vnfv9 .framer-m6d4kb > :first-child, .framer-Vnfv9 .framer-1jp2p8n > :first-child, .framer-Vnfv9 .framer-14klsmz > :first-child, .framer-Vnfv9 .framer-mvvb46 > :first-child, .framer-Vnfv9 .framer-xql8ks > :first-child, .framer-Vnfv9 .framer-1u7uex6 > :first-child, .framer-Vnfv9 .framer-1lirrtz > :first-child, .framer-Vnfv9 .framer-1naw98m > :first-child { margin-top: 0px; } .framer-Vnfv9.framer-19iq8en > :last-child, .framer-Vnfv9 .framer-adkb5k > :last-child, .framer-Vnfv9 .framer-b3ngfu > :last-child, .framer-Vnfv9 .framer-1p1dipe > :last-child, .framer-Vnfv9 .framer-ncj88i > :last-child, .framer-Vnfv9 .framer-v125tn > :last-child, .framer-Vnfv9 .framer-1irioqf > :last-child, .framer-Vnfv9 .framer-iqyzic > :last-child, .framer-Vnfv9 .framer-10i2zp1 > :last-child, .framer-Vnfv9 .framer-14bsvt8 > :last-child, .framer-Vnfv9 .framer-1cv8ia6 > :last-child, .framer-Vnfv9 .framer-19xc8qv > :last-child, .framer-Vnfv9 .framer-3jz7o5 > :last-child, .framer-Vnfv9 .framer-1j8lsi7 > :last-child, .framer-Vnfv9 .framer-1awi0x9 > :last-child, .framer-Vnfv9 .framer-m6d4kb > :last-child, .framer-Vnfv9 .framer-1jp2p8n > :last-child, .framer-Vnfv9 .framer-14klsmz > :last-child, .framer-Vnfv9 .framer-mvvb46 > :last-child, .framer-Vnfv9 .framer-xql8ks > :last-child, .framer-Vnfv9 .framer-1u7uex6 > :last-child, .framer-Vnfv9 .framer-1lirrtz > :last-child, .framer-Vnfv9 .framer-1naw98m > :last-child { margin-bottom: 0px; } .framer-Vnfv9 .framer-adkb5k > *, .framer-Vnfv9 .framer-1jp2p8n > *, .framer-Vnfv9 .framer-14klsmz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Vnfv9 .framer-1mkvogh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Vnfv9 .framer-1mkvogh > :first-child, .framer-Vnfv9 .framer-1c9k3s0 > :first-child, .framer-Vnfv9 .framer-1vkx5oc > :first-child, .framer-Vnfv9 .framer-1meb68s > :first-child, .framer-Vnfv9 .framer-1u1lird > :first-child, .framer-Vnfv9 .framer-1vyfz7q > :first-child, .framer-Vnfv9 .framer-z0wgf9 > :first-child, .framer-Vnfv9 .framer-pu2q2q > :first-child, .framer-Vnfv9 .framer-gca2uo > :first-child, .framer-Vnfv9 .framer-h5rnfi > :first-child, .framer-Vnfv9 .framer-1rmfksj > :first-child, .framer-Vnfv9 .framer-1gzsp0k > :first-child, .framer-Vnfv9 .framer-9c2wys > :first-child, .framer-Vnfv9 .framer-jy68wm > :first-child, .framer-Vnfv9 .framer-1uuc94h > :first-child, .framer-Vnfv9 .framer-10uxxcy > :first-child, .framer-Vnfv9 .framer-1ct7s9b > :first-child, .framer-Vnfv9 .framer-4o20ye > :first-child, .framer-Vnfv9 .framer-f8kp2i > :first-child, .framer-Vnfv9 .framer-p198z3 > :first-child, .framer-Vnfv9 .framer-1vivp8s > :first-child, .framer-Vnfv9 .framer-aujzl6 > :first-child, .framer-Vnfv9 .framer-1hj8eb8 > :first-child, .framer-Vnfv9 .framer-gdye2f > :first-child, .framer-Vnfv9 .framer-fwutrq > :first-child { margin-left: 0px; } .framer-Vnfv9 .framer-1mkvogh > :last-child, .framer-Vnfv9 .framer-1c9k3s0 > :last-child, .framer-Vnfv9 .framer-1vkx5oc > :last-child, .framer-Vnfv9 .framer-1meb68s > :last-child, .framer-Vnfv9 .framer-1u1lird > :last-child, .framer-Vnfv9 .framer-1vyfz7q > :last-child, .framer-Vnfv9 .framer-z0wgf9 > :last-child, .framer-Vnfv9 .framer-pu2q2q > :last-child, .framer-Vnfv9 .framer-gca2uo > :last-child, .framer-Vnfv9 .framer-h5rnfi > :last-child, .framer-Vnfv9 .framer-1rmfksj > :last-child, .framer-Vnfv9 .framer-1gzsp0k > :last-child, .framer-Vnfv9 .framer-9c2wys > :last-child, .framer-Vnfv9 .framer-jy68wm > :last-child, .framer-Vnfv9 .framer-1uuc94h > :last-child, .framer-Vnfv9 .framer-10uxxcy > :last-child, .framer-Vnfv9 .framer-1ct7s9b > :last-child, .framer-Vnfv9 .framer-4o20ye > :last-child, .framer-Vnfv9 .framer-f8kp2i > :last-child, .framer-Vnfv9 .framer-p198z3 > :last-child, .framer-Vnfv9 .framer-1vivp8s > :last-child, .framer-Vnfv9 .framer-aujzl6 > :last-child, .framer-Vnfv9 .framer-1hj8eb8 > :last-child, .framer-Vnfv9 .framer-gdye2f > :last-child, .framer-Vnfv9 .framer-fwutrq > :last-child { margin-right: 0px; } .framer-Vnfv9 .framer-1c9k3s0 > *, .framer-Vnfv9 .framer-1vyfz7q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Vnfv9 .framer-b3ngfu > *, .framer-Vnfv9 .framer-1p1dipe > *, .framer-Vnfv9 .framer-ncj88i > *, .framer-Vnfv9 .framer-v125tn > *, .framer-Vnfv9 .framer-1irioqf > *, .framer-Vnfv9 .framer-iqyzic > *, .framer-Vnfv9 .framer-1u7uex6 > *, .framer-Vnfv9 .framer-1lirrtz > *, .framer-Vnfv9 .framer-1naw98m > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Vnfv9 .framer-1vkx5oc > *, .framer-Vnfv9 .framer-1u1lird > *, .framer-Vnfv9 .framer-pu2q2q > *, .framer-Vnfv9 .framer-gca2uo > *, .framer-Vnfv9 .framer-1hj8eb8 > *, .framer-Vnfv9 .framer-fwutrq > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Vnfv9 .framer-1meb68s > *, .framer-Vnfv9 .framer-z0wgf9 > *, .framer-Vnfv9 .framer-gdye2f > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Vnfv9 .framer-10i2zp1 > *, .framer-Vnfv9 .framer-mvvb46 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Vnfv9 .framer-14bsvt8 > *, .framer-Vnfv9 .framer-xql8ks > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Vnfv9 .framer-1cv8ia6 > *, .framer-Vnfv9 .framer-19xc8qv > *, .framer-Vnfv9 .framer-3jz7o5 > *, .framer-Vnfv9 .framer-1j8lsi7 > *, .framer-Vnfv9 .framer-1awi0x9 > *, .framer-Vnfv9 .framer-m6d4kb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Vnfv9 .framer-h5rnfi > *, .framer-Vnfv9 .framer-1rmfksj > *, .framer-Vnfv9 .framer-1gzsp0k > *, .framer-Vnfv9 .framer-9c2wys > *, .framer-Vnfv9 .framer-jy68wm > *, .framer-Vnfv9 .framer-1uuc94h > *, .framer-Vnfv9 .framer-10uxxcy > *, .framer-Vnfv9 .framer-1ct7s9b > *, .framer-Vnfv9 .framer-4o20ye > *, .framer-Vnfv9 .framer-f8kp2i > *, .framer-Vnfv9 .framer-p198z3 > *, .framer-Vnfv9 .framer-1vivp8s > *, .framer-Vnfv9 .framer-aujzl6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Vnfv9.framer-v-ft1zt0.framer-19iq8en, .framer-Vnfv9.framer-v-1bg6bq6.framer-19iq8en { gap: 5px; overflow: visible; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-adkb5k, .framer-Vnfv9.framer-v-1bg6bq6 .framer-adkb5k { order: 0; padding: 20px 0px 0px 0px; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1mkvogh, .framer-Vnfv9.framer-v-ft1zt0 .framer-1vko1yn, .framer-Vnfv9.framer-v-1v0mkty .framer-2opuz8-container, .framer-Vnfv9.framer-v-1v0mkty .framer-mvvb46, .framer-Vnfv9.framer-v-1v0mkty .framer-xql8ks, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1mkvogh, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1vko1yn { order: 1; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1ydx0ka-container, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1ydx0ka-container { order: 3; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1vyfz7q, .framer-Vnfv9.framer-v-1hilek0 .framer-dye1fy-container, .framer-Vnfv9.framer-v-1v0mkty .framer-1bq5gqu-container, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1vyfz7q { order: 0; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-19xc8qv, .framer-Vnfv9.framer-v-1bg6bq6 .framer-19xc8qv { order: 5; overflow: visible; will-change: unset; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1awi0x9, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1awi0x9 { order: 2; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1ct7s9b, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1ct7s9b { position: sticky; top: 110px; z-index: 2; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-4o20ye, .framer-Vnfv9.framer-v-1bg6bq6 .framer-4o20ye { max-width: 455px; }\",\".framer-Vnfv9.framer-v-ft1zt0 .framer-1vivp8s, .framer-Vnfv9.framer-v-1bg6bq6 .framer-1vivp8s { max-width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vnfv9.framer-v-ft1zt0.framer-19iq8en { gap: 0px; } .framer-Vnfv9.framer-v-ft1zt0.framer-19iq8en > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Vnfv9.framer-v-ft1zt0.framer-19iq8en > :first-child { margin-top: 0px; } .framer-Vnfv9.framer-v-ft1zt0.framer-19iq8en > :last-child { margin-bottom: 0px; } }\",\".framer-Vnfv9.framer-v-1hilek0.framer-19iq8en, .framer-Vnfv9.framer-v-1v0mkty.framer-19iq8en { gap: 10px; max-width: unset; overflow: visible; width: 375px; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-adkb5k { padding: 0px 0px 10px 0px; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-1mkvogh { align-content: center; align-items: center; flex-direction: column; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-1c9k3s0 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; order: 1; width: 100%; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-b3ngfu, .framer-Vnfv9.framer-v-1hilek0 .framer-yvoxsc-container, .framer-Vnfv9.framer-v-1hilek0 .framer-1p1dipe, .framer-Vnfv9.framer-v-1hilek0 .framer-ncj88i { width: 100%; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-1t52w7g, .framer-Vnfv9.framer-v-1hilek0 .framer-1meb68s, .framer-Vnfv9.framer-v-1hilek0 .framer-1v1dt2y { align-self: unset; width: 100%; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-1h82o2p-container, .framer-Vnfv9.framer-v-1hilek0 .framer-1e2qzd3-container { flex: 1 0 0px; width: 1px; }\",\".framer-Vnfv9.framer-v-1hilek0 .framer-1u1lird { align-self: unset; justify-content: flex-start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vnfv9.framer-v-1hilek0.framer-19iq8en, .framer-Vnfv9.framer-v-1hilek0 .framer-1mkvogh, .framer-Vnfv9.framer-v-1hilek0 .framer-1c9k3s0 { gap: 0px; } .framer-Vnfv9.framer-v-1hilek0.framer-19iq8en > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Vnfv9.framer-v-1hilek0.framer-19iq8en > :first-child, .framer-Vnfv9.framer-v-1hilek0 .framer-1mkvogh > :first-child, .framer-Vnfv9.framer-v-1hilek0 .framer-1c9k3s0 > :first-child { margin-top: 0px; } .framer-Vnfv9.framer-v-1hilek0.framer-19iq8en > :last-child, .framer-Vnfv9.framer-v-1hilek0 .framer-1mkvogh > :last-child, .framer-Vnfv9.framer-v-1hilek0 .framer-1c9k3s0 > :last-child { margin-bottom: 0px; } .framer-Vnfv9.framer-v-1hilek0 .framer-1mkvogh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Vnfv9.framer-v-1hilek0 .framer-1c9k3s0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Vnfv9.framer-v-1v0mkty .framer-adkb5k { order: 0; padding: 0px 0px 10px 0px; }\",\".framer-Vnfv9.framer-v-1v0mkty .framer-19xc8qv { order: 6; overflow: visible; will-change: unset; }\",\".framer-Vnfv9.framer-v-1v0mkty .framer-3jz7o5 { order: 0; width: 100%; }\",\".framer-Vnfv9.framer-v-1v0mkty .framer-1rmfksj { max-width: unset; }\",\".framer-Vnfv9.framer-v-1v0mkty .framer-jy68wm { max-width: 99px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vnfv9.framer-v-1v0mkty.framer-19iq8en { gap: 0px; } .framer-Vnfv9.framer-v-1v0mkty.framer-19iq8en > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Vnfv9.framer-v-1v0mkty.framer-19iq8en > :first-child { margin-top: 0px; } .framer-Vnfv9.framer-v-1v0mkty.framer-19iq8en > :last-child { margin-bottom: 0px; } }\",\".framer-Vnfv9.framer-v-1k2qvyn.framer-19iq8en { width: 800px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vnfv9.framer-v-1bg6bq6.framer-19iq8en { gap: 0px; } .framer-Vnfv9.framer-v-1bg6bq6.framer-19iq8en > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Vnfv9.framer-v-1bg6bq6.framer-19iq8en > :first-child { margin-top: 0px; } .framer-Vnfv9.framer-v-1bg6bq6.framer-19iq8en > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Vnfv9[data-border=\"true\"]::after, .framer-Vnfv9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7848\n * @framerIntrinsicWidth 1248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1248px\",null,null]},\"gtPygsIBY\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1248px\",null,null]},\"QYawqc_hZ\":{\"layout\":[\"fixed\",\"auto\"]},\"l9x_kfWLn\":{\"layout\":[\"fixed\",\"auto\"]},\"W3GTcd2eF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1248px\",null,null]},\"dlQ4sxx6q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1248px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbzC6LXBfk=withCSS(Component,css,\"framer-Vnfv9\");export default FramerbzC6LXBfk;FramerbzC6LXBfk.displayName=\"Release Schedule/Books\";FramerbzC6LXBfk.defaultProps={height:7848,width:1248};addPropertyControls(FramerbzC6LXBfk,{variant:{options:[\"aL2PgFBSh\",\"gtPygsIBY\",\"QYawqc_hZ\",\"l9x_kfWLn\",\"W3GTcd2eF\",\"dlQ4sxx6q\"],optionTitles:[\"Grid View - Desktop\",\"List View - Desktop\",\"Grid View - Mobile\",\"List View Mobile\",\"Grid - Tablet\",\"List Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbzC6LXBfk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...MainAdComponentFonts,...TimelineTimelineCardsFonts,...ComponentLoadMoreFonts,...FilterFonts,...SortingSelectorFonts,...ReleaseScheduleViewSelectionFonts,...ResetFiltersButtonFonts,...SuperfieldsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbzC6LXBfk\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1248\",\"framerIntrinsicHeight\":\"7848\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1248px\\\",null,null]},\\\"gtPygsIBY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1248px\\\",null,null]},\\\"QYawqc_hZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l9x_kfWLn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W3GTcd2eF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1248px\\\",null,null]},\\\"dlQ4sxx6q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1248px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import NavMainNavbar from\"#framer/local/canvasComponent/BUlIUJC1B/BUlIUJC1B.js\";import ReleaseScheduleBooks from\"#framer/local/canvasComponent/bzC6LXBfk/bzC6LXBfk.js\";import NavFooter from\"#framer/local/canvasComponent/HcZl6hGnN/HcZl6hGnN.js\";import NavLightsaberButton from\"#framer/local/canvasComponent/N1IqGZ4DN/N1IqGZ4DN.js\";import NavNavV2Sidebar from\"#framer/local/canvasComponent/sK38PBSpY/sK38PBSpY.js\";import Media from\"#framer/local/collection/e8pflVCpi/e8pflVCpi.js\";import*as sharedStyle from\"#framer/local/css/u5h3AhArG/u5h3AhArG.js\";import*as sharedStyle1 from\"#framer/local/css/VSPSvZTbT/VSPSvZTbT.js\";import metadataProvider from\"#framer/local/webPageMetadata/WITSgZRp1/WITSgZRp1.js\";const TickerFonts=getFonts(Ticker);const ReleaseScheduleBooksFonts=getFonts(ReleaseScheduleBooks);const NavFooterFonts=getFonts(NavFooter);const NavLightsaberButtonFonts=getFonts(NavLightsaberButton);const NavNavV2SidebarFonts=getFonts(NavNavV2Sidebar);const NavMainNavbarFonts=getFonts(NavMainNavbar);const breakpoints={JOLguEYMC:\"(min-width: 810px) and (max-width: 1199px)\",L4eFpglCn:\"(max-width: 809px)\",NYpxpk1lx:\"(min-width: 1200px) and (max-width: 1439px)\",q9ECaXSby:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-78TY2\";const variantClassNames={JOLguEYMC:\"framer-v-mb2m7y\",L4eFpglCn:\"framer-v-1blxyk6\",NYpxpk1lx:\"framer-v-xzm2mw\",q9ECaXSby:\"framer-v-13p6zdv\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition1={damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:400,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:400,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop Small\":\"NYpxpk1lx\",Desktop:\"q9ECaXSby\",Phone:\"L4eFpglCn\",Tablet:\"JOLguEYMC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"q9ECaXSby\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,tKzx2N577ulZNfukNv,KQ8skpJyrulZNfukNv,idulZNfukNv,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Xq97zv5wj3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"q9ECaXSby\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-13p6zdv\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JOLguEYMC:{background:{alt:\"Abstract gradient background transitions from deep purple to black with a subtle red glow along the bottom edge.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1590,pixelWidth:2519,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png\",srcSet:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=512 512w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png 2519w\"}},L4eFpglCn:{background:{alt:\"Abstract gradient background transitions from deep purple to black with a subtle red glow along the bottom edge.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1590,pixelWidth:2519,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png\",srcSet:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=512 512w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png 2519w\"}},NYpxpk1lx:{background:{alt:\"Abstract gradient background transitions from deep purple to black with a subtle red glow along the bottom edge.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1590,pixelWidth:2519,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png\",srcSet:\"https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=512 512w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAcLTOnk5Thegh67W8Bn9KNro.png 2519w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Abstract gradient background transitions from deep purple to black with a subtle red glow along the bottom edge.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1590,pixelWidth:2519,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PqoYEn14RUHdY8LU34KHhMNE.png\",srcSet:\"https://framerusercontent.com/images/PqoYEn14RUHdY8LU34KHhMNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PqoYEn14RUHdY8LU34KHhMNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PqoYEn14RUHdY8LU34KHhMNE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PqoYEn14RUHdY8LU34KHhMNE.png 2519w\"},className:\"framer-1vebtlb\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oloffj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfegv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-e5r0it\",\"data-styles-preset\":\"u5h3AhArG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255))\"},children:[\"Star Wars\",/*#__PURE__*/_jsx(\"br\",{}),\"Release Schedule\"]})}),className:\"framer-7mwe51\",\"data-framer-name\":\"The Complete Star Wars Timeline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4eFpglCn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8w3wjx\",\"data-styles-preset\":\"VSPSvZTbT\",style:{\"--framer-text-alignment\":\"center\"},children:\"All upcoming Star Wars projects in one convenient place.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8w3wjx\",\"data-styles-preset\":\"VSPSvZTbT\",children:\"All upcoming Star Wars projects in one convenient place.\"})}),className:\"framer-4x53xk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nd2e0\",\"data-framer-name\":\"Books\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-156wxdt-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:.1,id:\"hVnptUfHl\",layoutId:\"hVnptUfHl\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15u6n96\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ulZNfukNv\",data:Media,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"ulZNfukNv\",name:\"tKzx2N577\",type:\"Identifier\"},{collection:\"ulZNfukNv\",name:\"KQ8skpJyr\",type:\"Identifier\"},{collection:\"ulZNfukNv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"ulZNfukNv\",name:\"Fnia51wXn\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"nAMV07qV6\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"ulZNfukNv\",name:\"KQ8skpJyr\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"ulZNfukNv\",name:\"KQ8skpJyr\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{dataType:\"DATE\",type:\"TypeCast\",value:{collection:\"ulZNfukNv\",name:\"lre4IHG4h\",type:\"Identifier\"}},operator:\"<=\",right:{dataType:\"DATE\",type:\"TypeCast\",value:{type:\"LiteralValue\",value:\"2098-01-01T00:00:00.000Z\"}},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idulZNfukNv,KQ8skpJyr:KQ8skpJyrulZNfukNv,tKzx2N577:tKzx2N577ulZNfukNv},index)=>{tKzx2N577ulZNfukNv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ulZNfukNv-${idulZNfukNv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tKzx2N577:tKzx2N577ulZNfukNv},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tKzx2N577:tKzx2N577ulZNfukNv},webPageId:\"uIbhTNt5m\"},nodeId:\"r7Vl03rq6\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jiv2at framer-n4ja77\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"248px\",...toResponsiveImage(KQ8skpJyrulZNfukNv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1l1bsys\",\"data-framer-name\":\"image 52\"})})})})},idulZNfukNv);})})})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145jt9n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqbzid\",\"data-framer-name\":\"Articles\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JOLguEYMC:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,y:(componentViewport?.y||0)+0+864.9+0+0+24+0},L4eFpglCn:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+976.5+0+0+24+0},NYpxpk1lx:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1200px)`,y:(componentViewport?.y||0)+0+904.9+0+0+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1110,width:`min(${componentViewport?.width||\"100vw\"} - 240px, 1200px)`,y:(componentViewport?.y||0)+0+824.9+0+0+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-97beig-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JOLguEYMC:{variant:\"W3GTcd2eF\"},L4eFpglCn:{variant:\"QYawqc_hZ\"}},children:/*#__PURE__*/_jsx(ReleaseScheduleBooks,{height:\"100%\",id:\"qwk25DpCY\",layoutId:\"qwk25DpCY\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"aL2PgFBSh\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qzvbvj\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JOLguEYMC:{y:(componentViewport?.y||0)+0+864.9+0+1198+0},L4eFpglCn:{y:(componentViewport?.y||0)+0+976.5+0+1198+0},NYpxpk1lx:{y:(componentViewport?.y||0)+0+904.9+0+1254+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:983,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+824.9+0+1254+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dfots2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JOLguEYMC:{variant:\"NGo9eyztz\"},L4eFpglCn:{variant:\"t4nZODiGq\"},NYpxpk1lx:{variant:\"H3M5Zux2e\"}},children:/*#__PURE__*/_jsx(NavFooter,{height:\"100%\",id:\"DchBALjkU\",layoutId:\"DchBALjkU\",style:{width:\"100%\"},variant:\"j9M_XvJkI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:16,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1qkjiqp-container\",\"data-framer-name\":\"Lightsaber Button\",id:\"1qkjiqp\",layoutScroll:true,name:\"Lightsaber Button\",children:[/*#__PURE__*/_jsx(NavLightsaberButton,{height:\"100%\",id:\"sDBsOqq4j\",layoutId:\"sDBsOqq4j\",name:\"Lightsaber Button\",variant:\"vpUQpUmbL\",width:\"100%\",Xq97zv5wj:Xq97zv5wj3bnx0g({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.1,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1rvw6t7\"),\"data-framer-portal-id\":\"1qkjiqp\",exit:{opacity:0,transition:{delay:0,duration:.1,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"zcMTvGC4i\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4eFpglCn:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4eFpglCn:{exit:animation3,initial:animation4}},children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-16lna2r-container\"),\"data-framer-portal-id\":\"1qkjiqp\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4eFpglCn:{ngOznVt81:true,style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(NavNavV2Sidebar,{height:\"100%\",id:\"fC57R8642\",layoutId:\"fC57R8642\",ngOznVt81:false,style:{height:\"100%\"},variant:\"ppupZpVbf\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:149,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wybxe6-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4eFpglCn:{variant:\"omY4AFkkM\"}},children:/*#__PURE__*/_jsx(NavMainNavbar,{height:\"100%\",id:\"hEVcAis32\",layoutId:\"hEVcAis32\",style:{width:\"100%\"},variant:\"CrXPLA_VL\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-78TY2.framer-n4ja77, .framer-78TY2 .framer-n4ja77 { display: block; }\",\".framer-78TY2.framer-13p6zdv { align-content: center; align-items: center; background-color: var(--token-a4ea2bb8-9258-4b60-b20b-12afb1ed998e, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-78TY2 .framer-1vebtlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-78TY2 .framer-oloffj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 89px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-78TY2 .framer-cfegv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-78TY2 .framer-7mwe51 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-78TY2 .framer-4x53xk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-78TY2 .framer-10nd2e0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 301px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-78TY2 .framer-156wxdt-container { flex: none; height: 248px; position: relative; width: 100%; }\",\".framer-78TY2 .framer-15u6n96 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-78TY2 .framer-jiv2at { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-78TY2 .framer-1l1bsys { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 248px; position: relative; width: 248px; }\",\".framer-78TY2 .framer-145jt9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-78TY2 .framer-cqbzid { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-78TY2 .framer-97beig-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-78TY2 .framer-qzvbvj { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-78TY2 .framer-dfots2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 0; }\",\".framer-78TY2 .framer-1qkjiqp-container { flex: none; height: auto; position: fixed; right: 24px; top: 16px; width: auto; z-index: 7; }\",\".framer-78TY2.framer-1rvw6t7 { background-color: rgba(0, 0, 0, 0.1); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-78TY2.framer-16lna2r-container { flex: none; height: 100%; position: fixed; right: 0px; top: 0px; width: auto; z-index: 6; }\",\".framer-78TY2 .framer-wybxe6-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-78TY2.framer-13p6zdv, .framer-78TY2 .framer-1vebtlb, .framer-78TY2 .framer-oloffj, .framer-78TY2 .framer-cfegv, .framer-78TY2 .framer-10nd2e0, .framer-78TY2 .framer-15u6n96, .framer-78TY2 .framer-jiv2at, .framer-78TY2 .framer-145jt9n, .framer-78TY2 .framer-cqbzid, .framer-78TY2 .framer-qzvbvj { gap: 0px; } .framer-78TY2.framer-13p6zdv > *, .framer-78TY2 .framer-145jt9n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-78TY2.framer-13p6zdv > :first-child, .framer-78TY2 .framer-1vebtlb > :first-child, .framer-78TY2 .framer-oloffj > :first-child, .framer-78TY2 .framer-cfegv > :first-child, .framer-78TY2 .framer-10nd2e0 > :first-child, .framer-78TY2 .framer-145jt9n > :first-child, .framer-78TY2 .framer-cqbzid > :first-child { margin-top: 0px; } .framer-78TY2.framer-13p6zdv > :last-child, .framer-78TY2 .framer-1vebtlb > :last-child, .framer-78TY2 .framer-oloffj > :last-child, .framer-78TY2 .framer-cfegv > :last-child, .framer-78TY2 .framer-10nd2e0 > :last-child, .framer-78TY2 .framer-145jt9n > :last-child, .framer-78TY2 .framer-cqbzid > :last-child { margin-bottom: 0px; } .framer-78TY2 .framer-1vebtlb > *, .framer-78TY2 .framer-oloffj > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-78TY2 .framer-cfegv > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-78TY2 .framer-10nd2e0 > *, .framer-78TY2 .framer-cqbzid > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-78TY2 .framer-15u6n96 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-78TY2 .framer-15u6n96 > :first-child, .framer-78TY2 .framer-jiv2at > :first-child, .framer-78TY2 .framer-qzvbvj > :first-child { margin-left: 0px; } .framer-78TY2 .framer-15u6n96 > :last-child, .framer-78TY2 .framer-jiv2at > :last-child, .framer-78TY2 .framer-qzvbvj > :last-child { margin-right: 0px; } .framer-78TY2 .framer-jiv2at > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-78TY2 .framer-qzvbvj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-78TY2.framer-13p6zdv { width: 1200px; } .framer-78TY2 .framer-1vebtlb { padding: 120px 0px 200px 0px; } .framer-78TY2 .framer-cqbzid { padding: 24px 80px 120px 80px; } .framer-78TY2 .framer-dfots2-container { z-index: 2; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-78TY2.framer-13p6zdv { width: 810px; } .framer-78TY2 .framer-1vebtlb { padding: 120px 0px 160px 0px; } .framer-78TY2 .framer-oloffj { padding: 89px 0px 0px 8px; } .framer-78TY2 .framer-cqbzid { order: 0; padding: 24px 48px 64px 48px; } .framer-78TY2 .framer-qzvbvj { order: 1; }}\",\"@media (max-width: 809px) { .framer-78TY2.framer-13p6zdv { justify-content: center; overflow: hidden; width: 390px; } .framer-78TY2 .framer-1vebtlb { padding: 120px 0px 160px 0px; } .framer-78TY2 .framer-cfegv { flex-wrap: wrap; padding: 0px 20px 0px 20px; } .framer-78TY2 .framer-4x53xk { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-78TY2 .framer-cqbzid { padding: 24px 24px 64px 24px; } .framer-78TY2.framer-16lna2r-container { left: calc(50.00000000000002% - 100% / 2); right: unset; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3892\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NYpxpk1lx\":{\"layout\":[\"fixed\",\"auto\"]},\"JOLguEYMC\":{\"layout\":[\"fixed\",\"auto\"]},\"L4eFpglCn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerWITSgZRp1=withCSS(Component,css,\"framer-78TY2\");export default FramerWITSgZRp1;FramerWITSgZRp1.displayName=\"Release Schedule\";FramerWITSgZRp1.defaultProps={height:3892,width:1440};addFonts(FramerWITSgZRp1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts,...ReleaseScheduleBooksFonts,...NavFooterFonts,...NavLightsaberButtonFonts,...NavNavV2SidebarFonts,...NavMainNavbarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWITSgZRp1\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NYpxpk1lx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JOLguEYMC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L4eFpglCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3892\",\"framerContractVersion\":\"1\",\"framerLayoutTemplateCompatible\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FONT_FAMILY", "BORDER_RADIUS", "BORDER_WIDTH", "ICON_SIZE", "PADDING_VERTICAL", "PADDING_HORIZONTAL", "FILTER_GAP", "FILTER_BOTTOM_MARGIN", "TEXT_COLOR", "BORDER_COLOR", "BACKGROUND_COLOR", "SELECTED_BACKGROUND_COLOR", "ACTIVE_BORDER_COLOR", "HOVER_BACKGROUND_COLOR", "ACTIVE_TEXT_COLOR", "TEXT_SIZE", "TEXT_WEIGHT", "BOX_SHADOW", "baseFilterStyles", "SortCMS", "Component", "props", "sortOption", "setSortOption", "ye", "originalOrder", "setOriginalOrder", "sortOptions", "setSortOptions", "selectRef", "pe", "extractNumber", "str", "matches", "numStr", "ue", "layer", "cards", "options", "card", "el", "label", "field", "direction", "a", "b", "aEl", "bEl", "aValue", "bValue", "dateA", "parseDate", "dateB", "priceA", "parsePrice", "priceB", "hasNumberA", "hasNumberB", "numA", "numB", "dateString", "month", "day", "year", "priceString", "numericString", "handleSortChange", "value", "adjustSelectWidth", "select", "tempSpan", "window", "textWidth", "extraSpace", "u", "l", "p", "e", "option", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jh_4qN9BR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapinhy1p", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerkE6c9730b", "withCSS", "kE6c9730b_default", "addPropertyControls", "ControlType", "addFonts", "ReleaseScheduleTableViewTriggerFonts", "getFonts", "kE6c9730b_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "k691cruDG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap156m5gl", "args", "jh_4qN9BR3exmf6", "jh_4qN9BRua8322", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Framern_ogxAzJJ", "withCSS", "n_ogxAzJJ_default", "addPropertyControls", "ControlType", "addFonts", "MainAdComponentFonts", "getFonts", "YRGLURA0w_default", "TimelineTimelineCardsFonts", "yW0n298zH_default", "ComponentLoadMoreFonts", "BycMbHAra_default", "MotionDivSortCMS1h87yhm", "withCodeBoundaryForOverrides", "motion", "SortCMS", "FilterFonts", "Filter", "SortingSelectorFonts", "SortingSelector", "ReleaseScheduleViewSelectionFonts", "n_ogxAzJJ_default", "ResetFiltersButtonFonts", "ResetFiltersButton", "SuperfieldsFonts", "Superfields", "MotionDivSortCMS1cv8ia6", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "convertFromEnum", "value", "activeLocale", "toResponsiveImage", "transformTemplate1", "_", "t", "loaderVariants", "repeaterState", "currentVariant", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData1", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData2", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData3", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData4", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Sg9XJIdUoWm5_ujfl4", "lre4IHG4hWm5_ujfl4", "D_TdaeXA9Wm5_ujfl4", "RBo7N94bAWm5_ujfl4", "f9Ceg3jxyWm5_ujfl4", "KeKnKyvk0Wm5_ujfl4", "aM3ixSDDZWm5_ujfl4", "KQ8skpJyrWm5_ujfl4", "tKzx2N577Wm5_ujfl4", "Euza5F551Wm5_ujfl4", "rqHDlLZoEWm5_ujfl4", "iFRopJbTcWm5_ujfl4", "FYxzinrPYWm5_ujfl4", "idWm5_ujfl4", "Sg9XJIdUoOZXhuT67z", "lre4IHG4hOZXhuT67z", "D_TdaeXA9OZXhuT67z", "RBo7N94bAOZXhuT67z", "f9Ceg3jxyOZXhuT67z", "KeKnKyvk0OZXhuT67z", "aM3ixSDDZOZXhuT67z", "KQ8skpJyrOZXhuT67z", "tKzx2N577OZXhuT67z", "Euza5F551OZXhuT67z", "rqHDlLZoEOZXhuT67z", "iFRopJbTcOZXhuT67z", "FYxzinrPYOZXhuT67z", "idOZXhuT67z", "Sg9XJIdUoVZI88C7cp", "lre4IHG4hVZI88C7cp", "KQ8skpJyrVZI88C7cp", "tKzx2N577VZI88C7cp", "iFRopJbTcVZI88C7cp", "FYxzinrPYVZI88C7cp", "idVZI88C7cp", "Sg9XJIdUoKNImi7VbE", "lre4IHG4hKNImi7VbE", "D_TdaeXA9KNImi7VbE", "RBo7N94bAKNImi7VbE", "tKzx2N577KNImi7VbE", "iFRopJbTcKNImi7VbE", "FYxzinrPYKNImi7VbE", "idKNImi7VbE", "Sg9XJIdUowAyfP4ZtD", "lre4IHG4hwAyfP4ZtD", "D_TdaeXA9wAyfP4ZtD", "RBo7N94bAwAyfP4ZtD", "aM3ixSDDZwAyfP4ZtD", "KQ8skpJyrwAyfP4ZtD", "tKzx2N577wAyfP4ZtD", "iFRopJbTcwAyfP4ZtD", "FYxzinrPYwAyfP4ZtD", "idwAyfP4ZtD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Wld3NDzSj1b86s49", "overlay", "args", "k691cruDG12ykyr7", "k691cruDG1n6oihy", "k691cruDG1qnrlao", "k691cruDG15lgq4f", "k691cruDG1lhp2ug", "k691cruDGrk2nvg", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "YRGLURA0w_default", "RichText2", "Filter", "MotionDivSortCMS1h87yhm", "ChildrenCanSuspend", "QueryData", "e8pflVCpi_default", "collection", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "yW0n298zH_default", "toResponsiveImage", "enumToDisplayNameFunctions", "convertFromEnum", "transformTemplate1", "BycMbHAra_default", "loaderVariants", "index1", "SortingSelector", "n_ogxAzJJ_default", "index2", "index3", "Superfields", "index4", "Image2", "ResetFiltersButton", "MotionDivSortCMS1cv8ia6", "QueryData1", "collection1", "paginationInfo1", "loadMore1", "index5", "resolvedLinks1", "getLoadingLazyAtYPosition", "QueryData2", "collection2", "paginationInfo2", "loadMore2", "index6", "resolvedLinks2", "QueryData3", "collection3", "paginationInfo3", "loadMore3", "index7", "resolvedLinks3", "collection4", "paginationInfo4", "loadMore4", "index8", "resolvedLinks4", "index9", "index10", "css", "FramerbzC6LXBfk", "withCSS", "bzC6LXBfk_default", "addPropertyControls", "ControlType", "addFonts", "MainAdComponentFonts", "TimelineTimelineCardsFonts", "ComponentLoadMoreFonts", "FilterFonts", "SortingSelectorFonts", "ReleaseScheduleViewSelectionFonts", "ResetFiltersButtonFonts", "SuperfieldsFonts", "getFontsFromSharedStyle", "fonts", "TickerFonts", "getFonts", "Ticker", "ReleaseScheduleBooksFonts", "bzC6LXBfk_default", "NavFooterFonts", "HcZl6hGnN_default", "NavLightsaberButtonFonts", "N1IqGZ4DN_default", "NavNavV2SidebarFonts", "sK38PBSpY_default", "NavMainNavbarFonts", "BUlIUJC1B_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "tKzx2N577ulZNfukNv", "KQ8skpJyrulZNfukNv", "idulZNfukNv", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Xq97zv5wj3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "ComponentViewportProvider", "Container", "Ticker", "ChildrenCanSuspend", "e8pflVCpi_default", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "Link", "bzC6LXBfk_default", "HcZl6hGnN_default", "N1IqGZ4DN_default", "AnimatePresence", "Ga", "sK38PBSpY_default", "BUlIUJC1B_default", "css", "FramerWITSgZRp1", "withCSS", "WITSgZRp1_default", "addFonts", "TickerFonts", "ReleaseScheduleBooksFonts", "NavFooterFonts", "NavLightsaberButtonFonts", "NavNavV2SidebarFonts", "NavMainNavbarFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
